diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2023-01-09 14:23:23 -0700 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2023-02-12 16:16:53 -0700 |
commit | d91f8ce17a6fc165fafd9dc921911233a69c34d2 (patch) | |
tree | 808a86b8f2309fe344b4cb0af62101b8a3b8b59a /lib/containers/arcache.go | |
parent | 1d7f5446dc37687f078269af3c63af7d7ebbfab4 (diff) |
tree-wide: Migrate to the new ARCache
Diffstat (limited to 'lib/containers/arcache.go')
-rw-r--r-- | lib/containers/arcache.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/containers/arcache.go b/lib/containers/arcache.go index ad551e9..1dc3b7e 100644 --- a/lib/containers/arcache.go +++ b/lib/containers/arcache.go @@ -53,6 +53,8 @@ type ARCache[K comparable, V any] struct { noopChecker //nolint:unused // False positive; it is used. } +var _ Map[int, string] = (*ARCache[int, string])(nil) + //nolint:unused // False positive; it is used. type noopChecker struct{} |