1 // error_code stub implementation, for compatibility only 2 3 // Copyright Beman Dawes 2002, 2006 4 // Copyright Peter Dimov 2018 5 6 // Distributed under the Boost Software License, Version 1.0. (See accompanying 7 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 9 // See library home page at http://www.boost.org/libs/system 10 11 //----------------------------------------------------------------------------// 12 13 // define BOOST_SYSTEM_SOURCE so that <boost/system/config.hpp> knows 14 // the library is being built (possibly exporting rather than importing code) 15 #define BOOST_SYSTEM_SOURCE 16 17 #include <boost/system/config.hpp> 18 19 namespace boost 20 { 21 22 namespace system 23 { 24 dummy_exported_function()25BOOST_SYSTEM_DECL void dummy_exported_function() 26 { 27 } 28 29 } // namespace system 30 31 } // namespace boost 32