summaryrefslogtreecommitdiff
path: root/test/utils/container_matchers.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/utils/container_matchers.hpp')
-rw-r--r--test/utils/container_matchers.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/utils/container_matchers.hpp b/test/utils/container_matchers.hpp
index 35a334e3..7def6d57 100644
--- a/test/utils/container_matchers.hpp
+++ b/test/utils/container_matchers.hpp
@@ -43,7 +43,7 @@ class UniqueElementsUnorderedMatcher
using value_type = typename LeftContainer::value_type;
using T = value_type;
static_assert(
- std::is_constructible<T, typename RightContainer::value_type>::value,
+ std::is_constructible_v<T, typename RightContainer::value_type>,
"Value type of container in the left hand side must be constructible "
"from that of the right hand side.");