summaryrefslogtreecommitdiff
path: root/asl/meta.hpp
diff options
context:
space:
mode:
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; };