Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions include/asioexec/completion_token.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,24 @@ namespace asioexec
"exec::asio::completion_token_t "
"instead.")]] = exec::asio::completion_token_t;

using thread_unsafe_completion_token_t
[[deprecated("asioexec::thread_unsafe_completion_token_t "
"is deprecated. Please use "
"exec::asio::thread_unsafe_completion_token_"
"t instead.")]] = exec::asio::thread_unsafe_completion_token_t;

inline constexpr auto const & completion_token [[deprecated("asioexec::completion_token is "
"deprecated. Please use "
"exec::asio::completion_token "
"instead.")]]
= exec::asio::completion_token;

inline constexpr auto const & thread_unsafe_completion_token [[deprecated("asioexec::thread_"
"unsafe_completion_"
"token is deprecated. "
"Please use "
"exec::asio::thread_"
"unsafe_completion_"
"token instead.")]]
= exec::asio::thread_unsafe_completion_token;
} // namespace asioexec
11 changes: 11 additions & 0 deletions include/asioexec/use_sender.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,19 @@ namespace asioexec
"exec::asio::use_sender_t "
"instead.")]] = exec::asio::use_sender_t;

using thread_unsafe_use_sender_t [[deprecated(
"asioexec::thread_unsafe_use_sender_t is deprecated. Please use "
"exec::asio::thread_unsafe_use_sender_t instead.")]] = exec::asio::thread_unsafe_use_sender_t;

inline constexpr auto const & use_sender [[deprecated("asioexec::use_sender is deprecated. "
"Please use exec::asio::use_sender "
"instead.")]]
= exec::asio::use_sender;

inline constexpr auto const & thread_unsafe_use_sender [[deprecated("asioexec::thread_unsafe_use_"
"sender is deprecated. "
"Please use "
"exec::asio::thread_unsafe_"
"use_sender instead.")]]
= exec::asio::thread_unsafe_use_sender;
} // namespace asioexec
Loading