Fix return code of quick.cpp

This commit is contained in:
Peter Dimov
2019-06-03 18:48:13 +03:00
parent 566bde5fcc
commit bc73c4b822

View File

@ -11,5 +11,5 @@ using namespace boost::variant2;
int main()
{
variant<float, int> v( 2 );
return get<1>( v ) == 2;
return get<1>( v ) == 2? 0: 1;
}