summaryrefslogtreecommitdiff
path: root/syncutil/cachemap.go
diff options
context:
space:
mode:
Diffstat (limited to 'syncutil/cachemap.go')
-rw-r--r--syncutil/cachemap.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/syncutil/cachemap.go b/syncutil/cachemap.go
index 8eab4bc..8c4dfc5 100644
--- a/syncutil/cachemap.go
+++ b/syncutil/cachemap.go
@@ -5,13 +5,11 @@
package syncutil
import (
- "sync"
-
"git.lukeshu.com/go/containers/typedsync"
)
type cacheVal[V any] struct {
- wg sync.WaitGroup
+ wg typedsync.WaitGroup
v V
}