summaryrefslogtreecommitdiff
path: root/asl/meta.hpp
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2024-10-10 23:38:35 +0200
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2024-12-20 15:35:58 +0100
commite020805cb140ed98d09e606a867b910fce78ad15 (patch)
tree08e79fbfa9e799b15f170bdeb198c2ba19287189 /asl/meta.hpp
parent8dfd173285df515fe9b41d970321da9d049460f8 (diff)
Integers formatting
Diffstat (limited to 'asl/meta.hpp')
-rw-r--r--asl/meta.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/asl/meta.hpp b/asl/meta.hpp
index 7372c3f..d05b095 100644
--- a/asl/meta.hpp
+++ b/asl/meta.hpp
@@ -65,6 +65,8 @@ template<typename T> concept trivially_move_assignable = trivially_assignable<as
template<typename T> concept trivially_destructible = __is_trivially_destructible(T);
+template<typename T> concept trivially_copyable = __is_trivially_copyable(T);
+
using nullptr_t = decltype(nullptr);
template<typename T> struct _un_const_helper { using type = T; };