123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #ifndef ASIO_HANDLER_CONTINUATION_HOOK_HPP
- #define ASIO_HANDLER_CONTINUATION_HOOK_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif
- #include "asio/detail/config.hpp"
- #include "asio/detail/push_options.hpp"
- namespace asio {
- inline bool asio_handler_is_continuation(...)
- {
- return false;
- }
- }
- #include "asio/detail/pop_options.hpp"
- #endif
|