system.hpp 601 B

123456789101112131415161718
  1. #ifndef BOOST_SYSTEM_HPP_INCLUDED
  2. #define BOOST_SYSTEM_HPP_INCLUDED
  3. // Copyright 2021 Peter Dimov
  4. // Distributed under the Boost Software License, Version 1.0.
  5. // https://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. // See library home page at http://www.boost.org/libs/system
  8. #include <boost/system/error_code.hpp>
  9. #include <boost/system/system_error.hpp>
  10. #include <boost/config.hpp>
  11. #if (__cplusplus >= 201103L) && !(defined(BOOST_GCC) && BOOST_GCC < 40800) || (defined(_MSC_VER) && _MSC_VER >= 1900)
  12. # include <boost/system/result.hpp>
  13. #endif
  14. #endif // #ifndef BOOST_SYSTEM_HPP_INCLUDED