diff options
author | louiz’ <louiz@louiz.org> | 2018-01-25 02:02:45 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2018-01-25 02:02:45 +0100 |
commit | 2a2808ac62c237778a794a9566239f98fd06f247 (patch) | |
tree | bc203d27cc6144904c0ebeedbbc391b9e2cac29f /tests/utils.cpp | |
parent | 23e51e814f330ee06dc4dac29d1b2f328e8238b8 (diff) | |
parent | 33a5f1355d1250bf77184459a8d40a790e42814d (diff) | |
download | biboumi-2a2808ac62c237778a794a9566239f98fd06f247.tar.gz biboumi-2a2808ac62c237778a794a9566239f98fd06f247.tar.bz2 biboumi-2a2808ac62c237778a794a9566239f98fd06f247.tar.xz biboumi-2a2808ac62c237778a794a9566239f98fd06f247.zip |
Merge branch '3332-version-7-x-should-work-with-gcc-4-9-as-stated-in-install-file' into 'v7'
Compile with gcc 4.9
See merge request louiz/biboumi!22
Diffstat (limited to 'tests/utils.cpp')
-rw-r--r-- | tests/utils.cpp | 14 |
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); } |