diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-08-01 00:56:05 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-08-01 00:56:05 +0200 |
commit | 4228e82740f62b841799cfca04861fa217fb93a5 (patch) | |
tree | 30bd93b9c62e87d8b1416344d21ba84cfb66ae2a /asl/meta/empty.hpp | |
parent | 4698812fdc2d9eeea03f26307d6e7e626aaec12b (diff) |
More work on taxonomy
Diffstat (limited to 'asl/meta/empty.hpp')
-rw-r--r-- | asl/meta/empty.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/asl/meta/empty.hpp b/asl/meta/empty.hpp new file mode 100644 index 0000000..9552fbd --- /dev/null +++ b/asl/meta/empty.hpp @@ -0,0 +1,11 @@ +#pragma once
+
+#include "asl/meta/types.hpp"
+#include "asl/meta/quals.hpp"
+
+namespace asl {
+
+template<typename T> concept is_void = same<un_qual_t<T>, void>;
+
+} // namespace asl
+ |