From 5642cba31b5f7610eddf552b1acd984cf718340d Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Fri, 27 Dec 2024 19:19:40 +0100 Subject: Rework some metaprogramming stuff --- asl/meta.hpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'asl/meta.hpp') diff --git a/asl/meta.hpp b/asl/meta.hpp index 35e238b..3fd76b4 100644 --- a/asl/meta.hpp +++ b/asl/meta.hpp @@ -67,8 +67,6 @@ template concept trivially_move_assignable = trivially_assignable_fr template concept trivially_destructible = __is_trivially_destructible(T); -template concept trivially_copyable = __is_trivially_copyable(T); - template concept copyable = copy_constructible && copy_assignable; template concept moveable = move_constructible && move_assignable; -- cgit