From c2d4216695b48dfe6bf7083c11e0a7fcbb671e2e Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Fri, 3 Jan 2025 01:49:42 +0100 Subject: Add atomic & is_integer --- asl/BUILD.bazel | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'asl/BUILD.bazel') 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", -- cgit