diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-02-12 23:34:47 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-02-12 23:34:47 +0100 |
commit | cb77cbe9ce4cddad6a460aa190ff70f0c13e4703 (patch) | |
tree | eb63a44f6264893ba803ff27db2faa59d644b0e9 /asl/log/BUILD.bazel | |
parent | e297b4182b735d97d5251361854acd2fccb03013 (diff) |
Rename log to logging
Diffstat (limited to 'asl/log/BUILD.bazel')
-rw-r--r-- | asl/log/BUILD.bazel | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/asl/log/BUILD.bazel b/asl/log/BUILD.bazel deleted file mode 100644 index 51f41df..0000000 --- a/asl/log/BUILD.bazel +++ /dev/null @@ -1,26 +0,0 @@ -cc_library( - name = "log", - srcs = [ - "log.cpp", - ], - hdrs = [ - "log.hpp", - ], - deps = [ - "//asl", - ], - visibility = ["//visibility:public"], -) - -cc_test( - name = "tests", - srcs = [ - "log_tests.cpp" - ], - deps = [ - ":log", - "//asl/testing", - ], - visibility = ["//visibility:public"], -) - |