From c147cb2a949d2a5c75804613c45e46c1a2ec8ab1 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Sat, 20 Apr 2024 01:22:04 +0200 Subject: Temporary allocator --- deimos/core/BUILD | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'deimos/core/BUILD') diff --git a/deimos/core/BUILD b/deimos/core/BUILD index 84ed375..f81101b 100644 --- a/deimos/core/BUILD +++ b/deimos/core/BUILD @@ -5,6 +5,7 @@ cc_library( "api_registry.h", "atomic.h", "base.h", + "format.h", "gsl.h", "hash.h", "id_name.h", @@ -13,7 +14,7 @@ cc_library( "os.h", "status.h", "std.h", - "format.h", + "temp_allocator.h", ], srcs = [ "allocator.cpp", @@ -23,6 +24,7 @@ cc_library( "log.cpp", "os_win32.cpp", "status.cpp", + "temp_allocator.cpp", ], visibility = ["//:__subpackages__"], ) -- cgit