2
0
mirror of https://github.com/boostorg/leaf.git synced 2026-02-12 12:12:16 +00:00

Removed tabs

This commit is contained in:
Emil Dotchevski
2022-01-19 23:32:44 -08:00
parent 799431ede9
commit ae9aae2a59
12 changed files with 444 additions and 444 deletions

View File

@@ -12,16 +12,16 @@ namespace leaf = boost::leaf;
leaf::result<void> BOOST_SYMBOL_VISIBLE hidden_result()
{
auto load = leaf::on_error( my_info<1>{1}, my_info<3>{3} );
return leaf::new_error( my_info<2>{2} );
auto load = leaf::on_error( my_info<1>{1}, my_info<3>{3} );
return leaf::new_error( my_info<2>{2} );
}
#ifndef BOOST_NO_EXCEPTIONS
void BOOST_SYMBOL_VISIBLE hidden_throw()
{
auto load = leaf::on_error( my_info<1>{1}, my_info<3>{3} );
throw leaf::exception( my_info<2>{2} );
auto load = leaf::on_error( my_info<1>{1}, my_info<3>{3} );
throw leaf::exception( my_info<2>{2} );
}
#endif