In lightweight_test_eq_nullptr, test with nullptr as first argument as well

This commit is contained in:
Peter Dimov 2018-08-07 17:43:38 +03:00
parent e1d50a1de2
commit e11fa9ac03

View File

@ -22,6 +22,9 @@ int main()
BOOST_TEST_EQ( p1, nullptr );
BOOST_TEST_NE( p2, nullptr );
BOOST_TEST_EQ( nullptr, p1 );
BOOST_TEST_NE( nullptr, p2 );
#endif
return boost::report_errors();