From 89e857349b6e38c1b7ed4e9c3a6ddbc2cb5635a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Sun, 1 Mar 2020 21:15:17 +0100 Subject: [PATCH] Use _t form of traits --- src/catch2/matchers/catch_matchers_templates.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/catch2/matchers/catch_matchers_templates.hpp b/src/catch2/matchers/catch_matchers_templates.hpp index 34e067ff..8959791f 100644 --- a/src/catch2/matchers/catch_matchers_templates.hpp +++ b/src/catch2/matchers/catch_matchers_templates.hpp @@ -60,7 +60,7 @@ namespace Matchers { template using is_generic_matcher = std::is_base_of< Catch::Matchers::MatcherGenericBase, - typename std::remove_cv::type>::type + std::remove_cv_t> >; template @@ -69,7 +69,7 @@ namespace Matchers { template using is_matcher = std::is_base_of< Catch::Matchers::MatcherUntypedBase, - typename std::remove_cv::type>::type + std::remove_cv_t> >;