mirror of
https://github.com/boostorg/leaf.git
synced 2026-02-01 20:42:17 +00:00
detab
This commit is contained in:
@@ -14,52 +14,52 @@ int global;
|
||||
|
||||
int get_global() noexcept
|
||||
{
|
||||
return global;
|
||||
return global;
|
||||
}
|
||||
|
||||
template <int>
|
||||
struct info
|
||||
{
|
||||
int value;
|
||||
int value;
|
||||
};
|
||||
|
||||
leaf::error_id g()
|
||||
{
|
||||
global = 0;
|
||||
auto load = leaf::on_error( []{ return info<42>{get_global()}; }, []{ return info<-42>{-42}; } );
|
||||
global = 42;
|
||||
return leaf::new_error();
|
||||
global = 0;
|
||||
auto load = leaf::on_error( []{ return info<42>{get_global()}; }, []{ return info<-42>{-42}; } );
|
||||
global = 42;
|
||||
return leaf::new_error();
|
||||
}
|
||||
|
||||
leaf::error_id f()
|
||||
{
|
||||
return g();
|
||||
return g();
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
int r = leaf::try_handle_all(
|
||||
[]() -> leaf::result<int>
|
||||
{
|
||||
return f();
|
||||
},
|
||||
[]( info<42> const & i42, leaf::diagnostic_info const & di )
|
||||
{
|
||||
BOOST_TEST_EQ(i42.value, 42);
|
||||
std::stringstream ss; ss << di;
|
||||
std::string s = ss.str();
|
||||
std::cout << s;
|
||||
int r = leaf::try_handle_all(
|
||||
[]() -> leaf::result<int>
|
||||
{
|
||||
return f();
|
||||
},
|
||||
[]( info<42> const & i42, leaf::diagnostic_info const & di )
|
||||
{
|
||||
BOOST_TEST_EQ(i42.value, 42);
|
||||
std::stringstream ss; ss << di;
|
||||
std::string s = ss.str();
|
||||
std::cout << s;
|
||||
#if BOOST_LEAF_DIAGNOSTICS
|
||||
BOOST_TEST(s.find("info<-42>")!=s.npos);
|
||||
BOOST_TEST(s.find("info<-42>")!=s.npos);
|
||||
#else
|
||||
BOOST_TEST(s.find("BOOST_LEAF_DIAGNOSTICS")!=s.npos);
|
||||
BOOST_TEST(s.find("BOOST_LEAF_DIAGNOSTICS")!=s.npos);
|
||||
#endif
|
||||
return 1;
|
||||
},
|
||||
[]
|
||||
{
|
||||
return 2;
|
||||
} );
|
||||
BOOST_TEST_EQ(r, 1);
|
||||
return boost::report_errors();
|
||||
return 1;
|
||||
},
|
||||
[]
|
||||
{
|
||||
return 2;
|
||||
} );
|
||||
BOOST_TEST_EQ(r, 1);
|
||||
return boost::report_errors();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user