diff --git a/include/fc/reflect/typename.hpp b/include/fc/reflect/typename.hpp index 3fe9a83..bcd4f2a 100644 --- a/include/fc/reflect/typename.hpp +++ b/include/fc/reflect/typename.hpp @@ -41,7 +41,7 @@ namespace fc { return n.c_str(); } }; - template struct get_typename> + template struct get_typename> { static const char* name() { static std::string n = std::string("flat_set<") + get_typename::name() + ">"; diff --git a/include/fc/static_variant.hpp b/include/fc/static_variant.hpp index 6f1841c..89baa4e 100644 --- a/include/fc/static_variant.hpp +++ b/include/fc/static_variant.hpp @@ -302,6 +302,14 @@ public: static constexpr int value = impl::position::pos; }; + struct type_lt { + bool operator()(const static_variant& a, const static_variant& b) const { return a.which() < b.which(); } + }; + struct type_eq { + bool operator()(const static_variant& a, const static_variant& b) const { return a.which() == b.which(); } + }; + using flat_set_type = flat_set; + static_variant() { init_from_tag(0); @@ -352,14 +360,6 @@ public: v.visit( impl::move_construct(*this) ); return *this; } - friend bool operator == ( const static_variant& a, const static_variant& b ) - { - return a.which() == b.which(); - } - friend bool operator < ( const static_variant& a, const static_variant& b ) - { - return a.which() < b.which(); - } template> X& get() { diff --git a/tests/variant_test.cpp b/tests/variant_test.cpp index 96e62b5..35186d7 100644 --- a/tests/variant_test.cpp +++ b/tests/variant_test.cpp @@ -182,7 +182,7 @@ BOOST_AUTO_TEST_CASE( nested_objects_test ) from_variant( v, sv1, nested_levels + 2 ); - BOOST_CHECK( sv == sv1 ); + BOOST_CHECK( decltype(sv)::type_eq()(sv, sv1) ); // both log and dump should never throw BOOST_TEST_MESSAGE( "========== About to log static_variant. ==========" ); @@ -215,7 +215,7 @@ BOOST_AUTO_TEST_CASE( nested_objects_test ) from_variant( v, vec1, nested_levels + 3 ); - BOOST_CHECK( vec == vec1 ); + BOOST_CHECK( std::equal(vec.begin(), vec.end(), vec1.begin(), decltype(vec)::value_type::type_eq()) ); // both log and dump should never throw BOOST_TEST_MESSAGE( "========== About to log vector. ==========" );