From 2d309a2cff4754c381353a73872a55b20b1a8019 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Wed, 26 Mar 2025 21:35:18 +0100 Subject: Separate allocator from memory --- asl/containers/BUILD.bazel | 3 +++ 1 file changed, 3 insertions(+) (limited to 'asl/containers/BUILD.bazel') diff --git a/asl/containers/BUILD.bazel b/asl/containers/BUILD.bazel index a8d6b4e..ba9c6f1 100644 --- a/asl/containers/BUILD.bazel +++ b/asl/containers/BUILD.bazel @@ -13,6 +13,7 @@ cc_library( ], deps = [ "//asl/memory", + "//asl/memory:allocator", "//asl/base", "//asl/types:span", "//asl/hashing", @@ -28,6 +29,7 @@ cc_library( deps = [ "//asl/base", "//asl/memory", + "//asl/memory:allocator", "//asl/types:maybe_uninit", "//asl/hashing", ], @@ -42,6 +44,7 @@ cc_library( deps = [ "//asl/base", "//asl/memory", + "//asl/memory:allocator", "//asl/hashing", ":hash_set", ], -- cgit