1//
2// system_error.hpp
3// ~~~~~~~~~~~~~~~~
4//
5// Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
6//
7// Distributed under the Boost Software License, Version 1.0. (See accompanying
8// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9//
10
11#ifndef ASIO_SYSTEM_ERROR_HPP
12#define ASIO_SYSTEM_ERROR_HPP
13
14
15#include "asio/detail/config.hpp"
16
17# include <system_error>
18
19#include "asio/detail/push_options.hpp"
20
21namespace asio {
22
23
24typedef std::system_error system_error;
25
26
27} // namespace asio
28
29#include "asio/detail/pop_options.hpp"
30
31#endif // ASIO_SYSTEM_ERROR_HPP
32