From 33a5f1355d1250bf77184459a8d40a790e42814d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?louiz=E2=80=99?= <louiz@louiz.org>
Date: Wed, 24 Jan 2018 21:42:26 +0100
Subject: Remove a variable template usage
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Because it’s only supported in gcc>=5.0
---
 tests/utils.cpp | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

(limited to 'tests')

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);
 }
-- 
cgit v1.2.3