From d241eaf1b209dcfb05656842dd6250067b704d99 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Tue, 19 Nov 2024 00:08:33 +0100 Subject: Add allocator, start work on box --- asl/tests/box_tests.cpp | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 asl/tests/box_tests.cpp (limited to 'asl/tests/box_tests.cpp') diff --git a/asl/tests/box_tests.cpp b/asl/tests/box_tests.cpp new file mode 100644 index 0000000..6c4d543 --- /dev/null +++ b/asl/tests/box_tests.cpp @@ -0,0 +1,6 @@ +#include "asl/box.hpp" + +#include "asl/testing/testing.hpp" + +static_assert(sizeof(asl::box) == sizeof(int*)); + -- cgit