From c4fc8e5065c8381d4ef271782e94eab341af249d Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 30 Jun 2020 03:29:23 +0300 Subject: [PATCH] Remove std::bit_not test, as it's C++14 --- test/bind_cpp20_test.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/test/bind_cpp20_test.cpp b/test/bind_cpp20_test.cpp index 021cbcb..dd236cd 100644 --- a/test/bind_cpp20_test.cpp +++ b/test/bind_cpp20_test.cpp @@ -31,7 +31,6 @@ int main() BOOST_TEST_EQ( boost::bind( std::bit_and(), 1, 2 )(), 0 ); BOOST_TEST_EQ( boost::bind( std::bit_or(), 1, 2 )(), 3 ); BOOST_TEST_EQ( boost::bind( std::bit_xor(), 1, 2 )(), 3 ); - BOOST_TEST_EQ( boost::bind( std::bit_not(), 1 )(), ~1 ); return boost::report_errors(); }