From e020805cb140ed98d09e606a867b910fce78ad15 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Thu, 10 Oct 2024 23:38:35 +0200 Subject: Integers formatting --- asl/meta.hpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'asl/meta.hpp') 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 concept trivially_move_assignable = trivially_assignable concept trivially_destructible = __is_trivially_destructible(T); +template concept trivially_copyable = __is_trivially_copyable(T); + using nullptr_t = decltype(nullptr); template struct _un_const_helper { using type = T; }; -- cgit