diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-01-06 00:33:50 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-01-06 00:33:50 +0100 |
commit | 48f7e22d9cc93989173afe2550fcc2f082c61773 (patch) | |
tree | 1adaa1c16b905b48eeff1997c595909d43a46cd0 /asl/tests | |
parent | 159f38d4e12bbcc48799431f4b69321a445be8ca (diff) |
Start work on hashing
Diffstat (limited to 'asl/tests')
-rw-r--r-- | asl/tests/meta_tests.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/asl/tests/meta_tests.cpp b/asl/tests/meta_tests.cpp index 24e9754..4fedd71 100644 --- a/asl/tests/meta_tests.cpp +++ b/asl/tests/meta_tests.cpp @@ -232,3 +232,7 @@ static_assert(asl::is_floating_point<volatile double>); static_assert(!asl::is_floating_point<const float&>);
static_assert(!asl::is_floating_point<int>);
static_assert(!asl::is_floating_point<C>);
+
+static_assert(asl::uniquely_represented<int>);
+static_assert(asl::uniquely_represented<uint128_t>);
+static_assert(!asl::uniquely_represented<bool>);
|