diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-08-23 20:05:22 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-08-23 20:05:22 +0200 |
commit | 19ce24de5e8ef31be2925074e962ae23aaf65be0 (patch) | |
tree | 08bb129f79ced8efe3f6f4002b0750395adb7f21 /asl/BUILD.bazel | |
parent | ea795dcccb136a45fa08a8a82953f95343706c6c (diff) |
Some work on ptr
Diffstat (limited to 'asl/BUILD.bazel')
-rw-r--r-- | asl/BUILD.bazel | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/asl/BUILD.bazel b/asl/BUILD.bazel index c5f443e..4fdeb38 100644 --- a/asl/BUILD.bazel +++ b/asl/BUILD.bazel @@ -3,6 +3,7 @@ cc_library( hdrs = [
"integers.hpp",
"meta.hpp",
+ "ptr.hpp",
"utility.hpp",
],
visibility = ["//visibility:public"],
@@ -17,4 +18,4 @@ cc_library( deps = [
":asl",
],
-) for name in ["integers", "meta"]]
+) for name in ["integers", "meta", "ptr"]]
|