Fix throw_exception_nx_test2

This commit is contained in:
Peter Dimov
2021-09-30 21:16:03 +03:00
parent b432f24664
commit 1d555aff4b

View File

@ -28,7 +28,7 @@ void throw_exception( std::exception const &, boost::source_location const & loc
int r = 0;
if( std::strcmp( loc.file_name(), __FILE__ ) != 0 ) ++r;
if( loc.line() != 18 ) ++r;
if( loc.line() != 19 ) ++r;
std::exit( r );
}