diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-11-13 00:01:06 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-12-20 15:35:58 +0100 |
commit | 35a996490200126e72775398fa3d6daa0ec4f435 (patch) | |
tree | 065bc639ff3a2bd4e06e63b2a6c6255f509ddbb0 /asl/tests/meta_tests.cpp | |
parent | ac47be51b79f4c3e49656870e135453eefe759ea (diff) |
Introduce byte, use span<byte> on io Writer
Diffstat (limited to 'asl/tests/meta_tests.cpp')
-rw-r--r-- | asl/tests/meta_tests.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/asl/tests/meta_tests.cpp b/asl/tests/meta_tests.cpp index 5fc4ef4..40b9046 100644 --- a/asl/tests/meta_tests.cpp +++ b/asl/tests/meta_tests.cpp @@ -197,3 +197,8 @@ static_assert(!asl::derived_from<uint8_t, uint16_t>); static_assert(!asl::derived_from<uint16_t, uint8_t>);
static_assert(!asl::derived_from<int, int>);
+static_assert(!asl::is_const<int>);
+static_assert(asl::is_const<const int>);
+static_assert(!asl::is_const<const int*>);
+static_assert(asl::is_const<int* const>);
+
|