Skip to content

Commit

Permalink
Merge pull request #111 from bitshares/jmj_1593_variant
Browse files Browse the repository at this point in the history
Equality check does not work on Windows
  • Loading branch information
jmjatlanta authored Apr 10, 2019
2 parents af572ba + d22f9ed commit 5f8f799
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/variant_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;)
{
Expand Down

0 comments on commit 5f8f799

Please sign in to comment.