Files
system/test/std_ec_mismatch_2.cpp

27 lines
484 B
C++
Raw Normal View History

2019-04-24 18:19:21 +03:00
// Copyright 2019 Peter Dimov.
// Distributed under the Boost Software License, Version 1.0.
#include <boost/system/error_code.hpp>
#if defined(BOOST_SYSTEM_HAS_SYSTEM_ERROR)
#include <system_error>
namespace lib2
{
std::error_code get_system_code()
{
return boost::system::error_code( 0, boost::system::system_category() );
}
std::error_code get_generic_code()
{
return boost::system::error_code( 0, boost::system::generic_category() );
}
} // namespace lib2
#endif