1
0
forked from boostorg/bind

Remove std::bit_not test, as it's C++14

This commit is contained in:
Peter Dimov
2020-06-30 03:29:23 +03:00
parent ba0ca52695
commit c4fc8e5065

View File

@ -31,7 +31,6 @@ int main()
BOOST_TEST_EQ( boost::bind( std::bit_and<int>(), 1, 2 )(), 0 );
BOOST_TEST_EQ( boost::bind( std::bit_or<int>(), 1, 2 )(), 3 );
BOOST_TEST_EQ( boost::bind( std::bit_xor<int>(), 1, 2 )(), 3 );
BOOST_TEST_EQ( boost::bind( std::bit_not<int>(), 1 )(), ~1 );
return boost::report_errors();
}