diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-09-06 23:22:18 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-09-06 23:22:18 +0200 |
commit | def67bba57e7cfdf9942bc2c88a4ce484963f9d2 (patch) | |
tree | a0c2024343151166bebc70440e2adb58c611d409 /asl/BUILD.bazel | |
parent | aa427cb5fe7564a85703f14f76f854419274decc (diff) |
maybe_uninit
Diffstat (limited to 'asl/BUILD.bazel')
-rw-r--r-- | asl/BUILD.bazel | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/asl/BUILD.bazel b/asl/BUILD.bazel index e5d5eb3..d7371c1 100644 --- a/asl/BUILD.bazel +++ b/asl/BUILD.bazel @@ -3,6 +3,9 @@ cc_library( hdrs = [
"annotations.hpp",
"integers.hpp",
+ "layout.hpp",
+ "maybe_uninit.hpp",
+ "memory.hpp",
"meta.hpp",
"option.hpp",
"utility.hpp",
@@ -19,4 +22,4 @@ cc_library( deps = [
":asl",
],
-) for name in ["integers", "meta", "option", "utility"]]
+) for name in ["integers", "maybe_uninit", "meta", "option", "utility"]]
|