diff --git a/include/ureact/adaptor/collect.hpp b/include/ureact/adaptor/collect.hpp index bbfbadd..72b03d7 100644 --- a/include/ureact/adaptor/collect.hpp +++ b/include/ureact/adaptor/collect.hpp @@ -12,39 +12,13 @@ #include #include +#include UREACT_BEGIN_NAMESPACE namespace detail { -template -struct has_push_back_method : std::false_type -{}; - -template -struct has_push_back_method().push_back( std::declval() ) )>> - : std::true_type -{}; - -template -inline constexpr bool has_push_back_method_v = has_push_back_method::value; - -template -struct has_insert_method : std::false_type -{}; - -template -struct has_insert_method().insert( std::declval() ) )>> : std::true_type -{}; - -template -inline constexpr bool has_insert_method_v = has_insert_method::value; - template