123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef BOOST_ASIO_IMPL_SYSTEM_CONTEXT_HPP
- #define BOOST_ASIO_IMPL_SYSTEM_CONTEXT_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif
- #include <boost/asio/system_executor.hpp>
- #include <boost/asio/detail/push_options.hpp>
- namespace boost {
- namespace asio {
- inline system_context::executor_type
- system_context::get_executor() noexcept
- {
- return system_executor();
- }
- }
- }
- #include <boost/asio/detail/pop_options.hpp>
- #endif
|