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 /src/utils | |
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 'src/utils')
-rw-r--r-- | src/utils/is_one_of.hpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/utils/is_one_of.hpp b/src/utils/is_one_of.hpp index 4d6770e..c706421 100644 --- a/src/utils/is_one_of.hpp +++ b/src/utils/is_one_of.hpp @@ -3,15 +3,12 @@ #include <type_traits> template <typename...> -struct is_one_of_implem { +struct is_one_of { static constexpr bool value = false; }; template <typename F, typename S, typename... T> -struct is_one_of_implem<F, S, T...> { +struct is_one_of<F, S, T...> { static constexpr bool value = - std::is_same<F, S>::value || is_one_of_implem<F, T...>::value; + std::is_same<F, S>::value || is_one_of<F, T...>::value; }; - -template<typename... T> -constexpr bool is_one_of = is_one_of_implem<T...>::value; |