mirror of
https://github.com/boostorg/core.git
synced 2025-07-30 04:47:24 +02:00
In lightweight_test_eq_nullptr, test with nullptr as first argument as well
This commit is contained in:
@ -22,6 +22,9 @@ int main()
|
|||||||
BOOST_TEST_EQ( p1, nullptr );
|
BOOST_TEST_EQ( p1, nullptr );
|
||||||
BOOST_TEST_NE( p2, nullptr );
|
BOOST_TEST_NE( p2, nullptr );
|
||||||
|
|
||||||
|
BOOST_TEST_EQ( nullptr, p1 );
|
||||||
|
BOOST_TEST_NE( nullptr, p2 );
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return boost::report_errors();
|
return boost::report_errors();
|
||||||
|
Reference in New Issue
Block a user