mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
all type_traits support C++14 requirements
This commit is contained in:
parent
bf0c7021cf
commit
403e83eaf0
95 changed files with 319 additions and 268 deletions
|
@ -10,6 +10,7 @@
|
|||
|
||||
#include <type_traits>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/type_traits/integral_constant.hpp>
|
||||
#include <sprout/weed/traits/type/is_container.hpp>
|
||||
|
||||
namespace sprout {
|
||||
|
@ -17,7 +18,7 @@ namespace sprout {
|
|||
namespace detail {
|
||||
template<typename T, typename U, typename = void>
|
||||
struct is_same_container
|
||||
: public std::false_type
|
||||
: public sprout::false_type
|
||||
{};
|
||||
template<typename T, typename U>
|
||||
struct is_same_container<
|
||||
|
@ -32,7 +33,7 @@ namespace sprout {
|
|||
>::value
|
||||
>::type
|
||||
>
|
||||
: public std::true_type
|
||||
: public sprout::true_type
|
||||
{};
|
||||
} // namespace detail
|
||||
} // namespace weed
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue