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/types/BUILD.bazel | 2 ++ 1 file changed, 2 insertions(+) (limited to 'asl/types/BUILD.bazel') diff --git a/asl/types/BUILD.bazel b/asl/types/BUILD.bazel index 53905a3..16a2a7a 100644 --- a/asl/types/BUILD.bazel +++ b/asl/types/BUILD.bazel @@ -14,6 +14,7 @@ cc_library( deps = [ "//asl/base", "//asl/memory", + "//asl/memory:allocator", "//asl/hashing", ], visibility = ["//visibility:public"], @@ -86,6 +87,7 @@ cc_library( deps = [ "//asl/base", "//asl/memory", + "//asl/memory:allocator", ], visibility = ["//visibility:public"], ) -- cgit