123456789101112131415161718 |
- #ifndef BOOST_SYSTEM_HPP_INCLUDED
- #define BOOST_SYSTEM_HPP_INCLUDED
- #include <boost/system/error_code.hpp>
- #include <boost/system/system_error.hpp>
- #include <boost/config.hpp>
- #if (__cplusplus >= 201103L) && !(defined(BOOST_GCC) && BOOST_GCC < 40800) || (defined(_MSC_VER) && _MSC_VER >= 1900)
- # include <boost/system/result.hpp>
- #endif
- #endif
|