mirror of
https://github.com/boostorg/system.git
synced 2025-10-11 23:15:25 +02:00
Update all references to <system_error> to refer to Boost.System
This commit is contained in:
@@ -151,7 +151,7 @@ int main()
|
||||
BOOST_TEST_EQ( X::instances, 0 );
|
||||
|
||||
{
|
||||
auto ec = make_error_code( std::errc::invalid_argument );
|
||||
auto ec = make_error_code( errc::invalid_argument );
|
||||
|
||||
result<int> r( ec );
|
||||
result<int> r2( std::move( r ) );
|
||||
@@ -163,7 +163,7 @@ int main()
|
||||
}
|
||||
|
||||
{
|
||||
auto ec = make_error_code( std::errc::invalid_argument );
|
||||
auto ec = make_error_code( errc::invalid_argument );
|
||||
|
||||
result<int> r2( result<int>{ ec } );
|
||||
|
||||
|
Reference in New Issue
Block a user