From d241eaf1b209dcfb05656842dd6250067b704d99 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Tue, 19 Nov 2024 00:08:33 +0100 Subject: Add allocator, start work on box --- asl/meta.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'asl/meta.hpp') diff --git a/asl/meta.hpp b/asl/meta.hpp index e64b4f2..552bf0c 100644 --- a/asl/meta.hpp +++ b/asl/meta.hpp @@ -21,10 +21,10 @@ template struct _select_helper template using select_t = _select_helper::type; -template struct _is_same_helper : false_type {}; -template struct _is_same_helper : true_type {}; +template struct _same_as_helper : false_type {}; +template struct _same_as_helper : true_type {}; -template concept same_as = _is_same_helper::value && _is_same_helper::value; +template concept same_as = _same_as_helper::value && _same_as_helper::value; template auto _as_lref_helper(int) -> id; template auto _as_lref_helper(...) -> id; -- cgit