From 35a996490200126e72775398fa3d6daa0ec4f435 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Wed, 13 Nov 2024 00:01:06 +0100 Subject: Introduce byte, use span on io Writer --- asl/tests/integers_tests.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'asl/tests/integers_tests.cpp') diff --git a/asl/tests/integers_tests.cpp b/asl/tests/integers_tests.cpp index d15168e..fdfa0fc 100644 --- a/asl/tests/integers_tests.cpp +++ b/asl/tests/integers_tests.cpp @@ -9,3 +9,5 @@ static_assert(sizeof(uint8_t) == 1); static_assert(sizeof(uint16_t) == 2); static_assert(sizeof(uint32_t) == 4); static_assert(sizeof(uint64_t) == 8); + +static_assert(sizeof(asl::byte) == 1); -- cgit