diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-10-08 23:33:21 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-12-20 15:35:58 +0100 |
commit | 0e7999f2d147b026aaee6693bdd2be2cb4a2519e (patch) | |
tree | b5bc7e49f732009f5d5f26ec625f4fa96935d40a /asl/BUILD.bazel | |
parent | 85462f25d6335bcca9423b6fc1e624d9a76a2375 (diff) |
Start work on formatting
Diffstat (limited to 'asl/BUILD.bazel')
-rw-r--r-- | asl/BUILD.bazel | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/asl/BUILD.bazel b/asl/BUILD.bazel index 06e2a9f..5137c8f 100644 --- a/asl/BUILD.bazel +++ b/asl/BUILD.bazel @@ -3,6 +3,7 @@ cc_library( hdrs = [
"annotations.hpp",
"assert.hpp",
+ "format.hpp",
"integers.hpp",
"layout.hpp",
"maybe_uninit.hpp",
@@ -11,6 +12,9 @@ cc_library( "option.hpp",
"utility.hpp",
],
+ srcs = [
+ "format.cpp",
+ ],
visibility = ["//visibility:public"],
)
@@ -23,4 +27,11 @@ cc_library( deps = [
":asl",
],
-) for name in ["integers", "maybe_uninit", "meta", "option", "utility"]]
+) for name in [
+ "format",
+ "integers",
+ "maybe_uninit",
+ "meta",
+ "option",
+ "utility",
+]]
|