diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-11-28 23:53:55 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-12-20 15:35:58 +0100 |
commit | 27c3969e69f5525ccb0bc462a615a14142b5f178 (patch) | |
tree | a11ebc28cb6c2609d5e04913f63d5c1ba1181e0e /asl/BUILD.bazel | |
parent | 3dc9bc3a6cefa30c553c6ec21b1545db98e26b6d (diff) |
Add float utilities, & float formatting with dragonbox
Diffstat (limited to 'asl/BUILD.bazel')
-rw-r--r-- | asl/BUILD.bazel | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/asl/BUILD.bazel b/asl/BUILD.bazel index b9875ab..391ae9d 100644 --- a/asl/BUILD.bazel +++ b/asl/BUILD.bazel @@ -6,6 +6,7 @@ cc_library( "assert.hpp",
"box.hpp",
"config.hpp",
+ "float.hpp",
"format.hpp",
"functional.hpp",
"integers.hpp",
@@ -26,6 +27,9 @@ cc_library( "format_float.cpp",
"print.cpp",
],
+ deps = [
+ "//vendor/dragonbox",
+ ],
visibility = ["//visibility:public"],
)
@@ -41,6 +45,7 @@ cc_library( ],
) for name in [
"box",
+ "float",
"format",
"functional",
"integers",
|