summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMaksim Denisov <denisov.maksim@huawei.com>2024-10-01 10:14:34 +0200
committerMaksim Denisov <denisov.maksim@huawei.com>2024-10-07 13:37:39 +0200
commita324e341ef8097d6d93731b592701d43bb5fb5d0 (patch)
tree97f68c73f22788cc7d3d6e5ae6411f073e647308 /test
parent5eb83b81a26e9a321ff8d68506905eaa4f15acd7 (diff)
downloadjustbuild-a324e341ef8097d6d93731b592701d43bb5fb5d0.tar.gz
Enable modernize-* checks.
Diffstat (limited to 'test')
-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.");