2018-09-16 03:04:19 +03:00
|
|
|
// error_code stub implementation, for compatibility only
|
2006-11-03 16:57:30 +00:00
|
|
|
|
|
|
|
|
// Copyright Beman Dawes 2002, 2006
|
2018-09-16 03:04:19 +03:00
|
|
|
// Copyright Peter Dimov 2018
|
2006-11-03 16:57:30 +00:00
|
|
|
|
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
|
|
|
|
|
|
// See library home page at http://www.boost.org/libs/system
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
|
|
2018-09-16 03:04:19 +03:00
|
|
|
#include <boost/config.hpp>
|
2014-01-06 16:52:15 -05:00
|
|
|
|
2018-09-16 03:04:19 +03:00
|
|
|
#if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_SYSTEM_DYN_LINK)
|
|
|
|
|
# define BOOST_SYSTEM_DECL BOOST_SYMBOL_EXPORT
|
|
|
|
|
#else
|
|
|
|
|
# define BOOST_SYSTEM_DECL
|
2012-12-09 14:47:39 +00:00
|
|
|
#endif
|
2018-09-16 03:04:19 +03:00
|
|
|
|
|
|
|
|
namespace boost
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
namespace system
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
BOOST_SYSTEM_DECL void dummy_exported_function()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace system
|
|
|
|
|
|
|
|
|
|
} // namespace boost
|