From 0e7999f2d147b026aaee6693bdd2be2cb4a2519e Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Tue, 8 Oct 2024 23:33:21 +0200 Subject: Start work on formatting --- asl/BUILD.bazel | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'asl/BUILD.bazel') 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", +]] -- cgit