Fix implicit conversion to int errors

This commit is contained in:
Peter Dimov
2021-12-09 22:26:18 +02:00
parent d0cf08daed
commit 2e1b2dcafb
4 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ struct foo
foo()
{
boost::system::error_code ec;
BOOST_TEST_NE( ec, boost::system::errc::permission_denied );
BOOST_TEST( ec != boost::system::errc::permission_denied );
}
} f;