summaryrefslogtreecommitdiff
path: root/asl/BUILD.bazel
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2025-01-03 01:49:42 +0100
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2025-01-03 01:49:42 +0100
commitc2d4216695b48dfe6bf7083c11e0a7fcbb671e2e (patch)
tree600719b0f7d7d491eb70ca416b8af3b47bbc28eb /asl/BUILD.bazel
parenteb58edf811a328ddcc5e671a258be208da212630 (diff)
Add atomic & is_integer
Diffstat (limited to 'asl/BUILD.bazel')
-rw-r--r--asl/BUILD.bazel4
1 files changed, 4 insertions, 0 deletions
diff --git a/asl/BUILD.bazel b/asl/BUILD.bazel
index 54db8c7..da1018e 100644
--- a/asl/BUILD.bazel
+++ b/asl/BUILD.bazel
@@ -4,6 +4,7 @@ cc_library(
"allocator.hpp",
"annotations.hpp",
"assert.hpp",
+ "atomic.hpp",
"box.hpp",
"buffer.hpp",
"config.hpp",
@@ -19,6 +20,7 @@ cc_library(
"option.hpp",
"print.hpp",
"span.hpp",
+ "status.hpp",
"string.hpp",
"string_view.hpp",
"utility.hpp",
@@ -29,6 +31,7 @@ cc_library(
"format.cpp",
"format_float.cpp",
"print.cpp",
+ "status.cpp",
],
deps = [
"//vendor/dragonbox",
@@ -57,6 +60,7 @@ cc_library(
"meta",
"option",
"span",
+ "status",
"string",
"string_view",
"utility",