diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-03-25 19:32:02 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-03-25 19:32:02 +0100 |
commit | 5606b4c399404c0b8f745c6702d70f26eff8b371 (patch) | |
tree | aeafe10a9697196b101a457654319b73fb1c89a0 /deimos/core/BUILD | |
parent | 00c0d78199fcfbbb20828be5e06fd2d271fa4c1e (diff) |
Update to Clang 18, C++23, rework allocator
Diffstat (limited to 'deimos/core/BUILD')
-rw-r--r-- | deimos/core/BUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/deimos/core/BUILD b/deimos/core/BUILD index 2093642..cb76f90 100644 --- a/deimos/core/BUILD +++ b/deimos/core/BUILD @@ -1,9 +1,11 @@ cc_library(
name = "core",
hdrs = [
- "base.h",
"allocator.h",
"api_registry.h",
+ "base.h",
+ "hash.h",
+ "id_name.h",
],
srcs = [
"allocator.cpp",
|