diff options
Diffstat (limited to 'asl/memory')
-rw-r--r-- | asl/memory/BUILD.bazel | 10 | ||||
-rw-r--r-- | asl/memory/layout.hpp | 6 |
2 files changed, 16 insertions, 0 deletions
diff --git a/asl/memory/BUILD.bazel b/asl/memory/BUILD.bazel new file mode 100644 index 0000000..7029496 --- /dev/null +++ b/asl/memory/BUILD.bazel @@ -0,0 +1,10 @@ +cc_library(
+ name = "memory",
+ hdrs = [
+ "layout.hpp",
+ ],
+ deps = [
+ "//asl/base",
+ ],
+ visibility = ["//visibility:public"],
+)
diff --git a/asl/memory/layout.hpp b/asl/memory/layout.hpp new file mode 100644 index 0000000..02ab518 --- /dev/null +++ b/asl/memory/layout.hpp @@ -0,0 +1,6 @@ +#pragma once
+
+namespace asl {
+
+} // namespace asl
+
|