1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

add C++14 constexpr merge algorithm

This commit is contained in:
bolero-MURAKAMI 2014-04-06 13:16:08 +09:00
parent a090307cc2
commit ecccb58042
4 changed files with 84 additions and 3 deletions

View file

@ -40,7 +40,7 @@ namespace sprout {
#if SPROUT_USE_VARIABLE_TEMPLATES
namespace tuples {
template<typename T>
SPROUT_STATIC_CONSTEXPR bool is_tuple_v = sprout::tuples::is_tuple_v<T>::value;
SPROUT_STATIC_CONSTEXPR bool is_tuple_v = sprout::tuples::is_tuple<T>::value;
} // namespace tuples
using sprout::tuples::is_tuple;