diff options
author | louiz’ <louiz@louiz.org> | 2018-01-25 02:10:17 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2018-01-25 02:10:17 +0100 |
commit | 3f8513726512308b1b48d3370d7acf0f63752725 (patch) | |
tree | 04a02d673eeff7b2081df0b5e8b33a1a8a43c3ac /src/utils | |
parent | de73a728f28df7db3fddd431b07ef5bf6742fb1a (diff) | |
parent | 97c8e2fed3b510d8048a386230b480c3044153d4 (diff) | |
download | biboumi-3f8513726512308b1b48d3370d7acf0f63752725.tar.gz biboumi-3f8513726512308b1b48d3370d7acf0f63752725.tar.bz2 biboumi-3f8513726512308b1b48d3370d7acf0f63752725.tar.xz biboumi-3f8513726512308b1b48d3370d7acf0f63752725.zip |
Merge tag '7.2'
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; |