summaryrefslogtreecommitdiff
path: root/tests/utils.cpp
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2018-01-24 21:42:26 +0100
committerlouiz’ <louiz@louiz.org>2018-01-25 01:22:35 +0100
commit33a5f1355d1250bf77184459a8d40a790e42814d (patch)
treebc203d27cc6144904c0ebeedbbc391b9e2cac29f /tests/utils.cpp
parent23e51e814f330ee06dc4dac29d1b2f328e8238b8 (diff)
downloadbiboumi-33a5f1355d1250bf77184459a8d40a790e42814d.tar.gz
biboumi-33a5f1355d1250bf77184459a8d40a790e42814d.tar.bz2
biboumi-33a5f1355d1250bf77184459a8d40a790e42814d.tar.xz
biboumi-33a5f1355d1250bf77184459a8d40a790e42814d.zip
Remove a variable template usage
Because it’s only supported in gcc>=5.0
Diffstat (limited to 'tests/utils.cpp')
-rw-r--r--tests/utils.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/utils.cpp b/tests/utils.cpp
index 6de19f0..99c7040 100644
--- a/tests/utils.cpp
+++ b/tests/utils.cpp
@@ -175,11 +175,11 @@ TEST_CASE("dirname")
TEST_CASE("is_in")
{
- CHECK((is_one_of<int, float, std::string, int>) == true);
- CHECK((is_one_of<int, float, std::string>) == false);
- CHECK((is_one_of<int>) == false);
- CHECK((is_one_of<int, int>) == true);
- CHECK((is_one_of<bool, int>) == false);
- CHECK((is_one_of<bool, bool>) == true);
- CHECK((is_one_of<bool, bool, bool, bool, bool, int>) == true);
+ CHECK((is_one_of<int, float, std::string, int>::value) == true);
+ CHECK((is_one_of<int, float, std::string>::value) == false);
+ CHECK((is_one_of<int>::value) == false);
+ CHECK((is_one_of<int, int>::value) == true);
+ CHECK((is_one_of<bool, int>::value) == false);
+ CHECK((is_one_of<bool, bool>::value) == true);
+ CHECK((is_one_of<bool, bool, bool, bool, bool, int>::value) == true);
}