From 75b10758ba116eabed730d23e957f1d69a1e3cb8 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Tue, 6 Aug 2024 00:34:57 +0200 Subject: Type traits --- asl/meta/internal/quals.hpp | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 asl/meta/internal/quals.hpp (limited to 'asl/meta/internal/quals.hpp') diff --git a/asl/meta/internal/quals.hpp b/asl/meta/internal/quals.hpp deleted file mode 100644 index 869cc89..0000000 --- a/asl/meta/internal/quals.hpp +++ /dev/null @@ -1,16 +0,0 @@ -#pragma once - -#include "asl/meta/types.hpp" - -namespace asl::internal { - -template struct const_helper { using add = const T; using remove = T; }; -template struct const_helper { using add = const T; using remove = T; }; - -template concept is_const = same::add>; - -template struct volatile_helper { using add = volatile T; using remove = T; }; -template struct volatile_helper { using add = volatile T; using remove = T; }; - -} // namespace asl::internal - -- cgit