From d241eaf1b209dcfb05656842dd6250067b704d99 Mon Sep 17 00:00:00 2001
From: Steven Le Rouzic <steven.lerouzic@gmail.com>
Date: Tue, 19 Nov 2024 00:08:33 +0100
Subject: Add allocator, start work on box

---
 asl/BUILD.bazel | 4 ++++
 1 file changed, 4 insertions(+)

(limited to 'asl/BUILD.bazel')

diff --git a/asl/BUILD.bazel b/asl/BUILD.bazel
index 0841a86..20a1651 100644
--- a/asl/BUILD.bazel
+++ b/asl/BUILD.bazel
@@ -1,8 +1,10 @@
 cc_library(
     name = "asl",
     hdrs = [
+        "allocator.hpp",
         "annotations.hpp",
         "assert.hpp",
+        "box.hpp",
         "config.hpp",
         "format.hpp",
         "functional.hpp",
@@ -19,6 +21,7 @@ cc_library(
         "utility.hpp",
     ],
     srcs = [
+        "allocator.cpp",
         "format.cpp",
         "print.cpp",
     ],
@@ -36,6 +39,7 @@ cc_library(
         "//asl/testing",
     ],
 ) for name in [
+    "box",
     "format",
     "functional",
     "integers",
-- 
cgit