summaryrefslogtreecommitdiffhomepage
path: root/compat
diff options
context:
space:
mode:
Diffstat (limited to 'compat')
-rw-r--r--compat/macros.hpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/compat/macros.hpp b/compat/macros.hpp
index 497933cf..b6eea12b 100644
--- a/compat/macros.hpp
+++ b/compat/macros.hpp
@@ -15,11 +15,3 @@ namespace cxx20_compat {
template<typename t>
using remove_cvref_t = typename cxx20_compat::remove_cvref<t>::type;
-
-template<typename t>
-using to_const_ref_t = std::add_lvalue_reference_t<std::add_const_t<remove_cvref_t<t>>>;
-
-template<typename t>
-using cv_qualified = std::conditional_t<std::is_fundamental_v<remove_cvref_t<t>>,
- remove_cvref_t<t>,
- to_const_ref_t<t>>;