Merge pull request #111 from bitshares/jmj_1593_variant

Equality check does not work on Windows
This commit is contained in:
John M. Jones 2019-04-10 05:33:33 -05:00 committed by GitHub
commit 5f8f799185
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -70,7 +70,7 @@ BOOST_AUTO_TEST_CASE( types_edge_cases_test )
sv::tag_type current_value = variant_with_tagtype.get<sv::tag_type>();
BOOST_CHECK_EQUAL( current_value, init_value );
BOOST_CHECK( variant_with_tagtype == init_value );
BOOST_CHECK( variant_with_tagtype.get<sv::tag_type>() == init_value );
for (sv::tag_type i = variant_with_tagtype.count(); i-->0;)
{