12345678910111213141516171819202122232425262728293031 |
- #ifndef ASIO_SYSTEM_ERROR_HPP
- #define ASIO_SYSTEM_ERROR_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif
- #include "asio/detail/config.hpp"
- #include <system_error>
- #include "asio/detail/push_options.hpp"
- namespace asio {
- typedef std::system_error system_error;
- }
- #include "asio/detail/pop_options.hpp"
- #endif
|