mirror of
https://github.com/boostorg/leaf.git
synced 2026-02-11 11:52:18 +00:00
throw leaf::exception(....) becomes leaf::throw_exception(....)
This commit is contained in:
@@ -67,7 +67,7 @@ int main()
|
||||
leaf::try_catch(
|
||||
[]
|
||||
{
|
||||
f1( [] { throw leaf::exception(); } );
|
||||
f1( [] { leaf::throw_exception(); } );
|
||||
return 0;
|
||||
},
|
||||
[]( leaf::error_info const & err, info<1> )
|
||||
@@ -88,7 +88,7 @@ int main()
|
||||
leaf::try_catch(
|
||||
[]
|
||||
{
|
||||
f2( [] { throw leaf::exception(); } );
|
||||
f2( [] { leaf::throw_exception(); } );
|
||||
return 0;
|
||||
},
|
||||
[]( info<1> )
|
||||
|
||||
Reference in New Issue
Block a user