diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-08-23 19:12:42 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-08-23 19:12:42 +0200 |
commit | ea795dcccb136a45fa08a8a82953f95343706c6c (patch) | |
tree | c780f2cf4a76d3e8e6ad44d004b3d1ab4cd590e0 /asl/BUILD.bazel | |
parent | add3e12550d03d4408dc4e3169e55c8415e250a9 (diff) |
Add is_array
Diffstat (limited to 'asl/BUILD.bazel')
-rw-r--r-- | asl/BUILD.bazel | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/asl/BUILD.bazel b/asl/BUILD.bazel index fbbceed..c5f443e 100644 --- a/asl/BUILD.bazel +++ b/asl/BUILD.bazel @@ -3,8 +3,6 @@ cc_library( hdrs = [
"integers.hpp",
"meta.hpp",
- "object.hpp",
- "ptr.hpp",
"utility.hpp",
],
visibility = ["//visibility:public"],
@@ -19,4 +17,4 @@ cc_library( deps = [
":asl",
],
-) for name in ["integers", "meta", "object", "ptr"]]
+) for name in ["integers", "meta"]]
|