summaryrefslogtreecommitdiff
path: root/asl/containers/BUILD.bazel
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2025-03-26 21:35:18 +0100
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2025-03-26 21:35:18 +0100
commit2d309a2cff4754c381353a73872a55b20b1a8019 (patch)
tree543761aa0c2e2c12a1f7a9e27cd3f7a707671bef /asl/containers/BUILD.bazel
parentf19d93a69a0ec5c7a89dcb4c064c984aac90ba71 (diff)
Separate allocator from memory
Diffstat (limited to 'asl/containers/BUILD.bazel')
-rw-r--r--asl/containers/BUILD.bazel3
1 files changed, 3 insertions, 0 deletions
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",
],