mirror of
https://git.suyu.dev/suyu/ext-boost.git
synced 2026-01-07 15:08:16 +01:00
externals: Update boost to 1.72 and add Boost Context
This commit is contained in:
parent
5e8300b76a
commit
77abe07b3b
618 changed files with 96299 additions and 14263 deletions
|
|
@ -108,6 +108,24 @@
|
|||
BOOST_ASIO_MOVE_CAST(T3)(x3), BOOST_ASIO_MOVE_CAST(T4)(x4), \
|
||||
BOOST_ASIO_MOVE_CAST(T5)(x5)
|
||||
|
||||
# define BOOST_ASIO_VARIADIC_MOVE_DECLVAL(n) \
|
||||
BOOST_ASIO_VARIADIC_MOVE_DECLVAL_##n
|
||||
|
||||
# define BOOST_ASIO_VARIADIC_MOVE_DECLVAL_1 \
|
||||
declval<BOOST_ASIO_MOVE_ARG(T1)>()
|
||||
# define BOOST_ASIO_VARIADIC_MOVE_DECLVAL_2 \
|
||||
declval<BOOST_ASIO_MOVE_ARG(T1)>(), declval<BOOST_ASIO_MOVE_ARG(T2)>()
|
||||
# define BOOST_ASIO_VARIADIC_MOVE_DECLVAL_3 \
|
||||
declval<BOOST_ASIO_MOVE_ARG(T1)>(), declval<BOOST_ASIO_MOVE_ARG(T2)>(), \
|
||||
declval<BOOST_ASIO_MOVE_ARG(T3)>()
|
||||
# define BOOST_ASIO_VARIADIC_MOVE_DECLVAL_4 \
|
||||
declval<BOOST_ASIO_MOVE_ARG(T1)>(), declval<BOOST_ASIO_MOVE_ARG(T2)>(), \
|
||||
declval<BOOST_ASIO_MOVE_ARG(T3)>(), declval<BOOST_ASIO_MOVE_ARG(T4)>()
|
||||
# define BOOST_ASIO_VARIADIC_MOVE_DECLVAL_5 \
|
||||
declval<BOOST_ASIO_MOVE_ARG(T1)>(), declval<BOOST_ASIO_MOVE_ARG(T2)>(), \
|
||||
declval<BOOST_ASIO_MOVE_ARG(T3)>(), declval<BOOST_ASIO_MOVE_ARG(T4)>(), \
|
||||
declval<BOOST_ASIO_MOVE_ARG(T5)>()
|
||||
|
||||
# define BOOST_ASIO_VARIADIC_DECAY(n) \
|
||||
BOOST_ASIO_VARIADIC_DECAY_##n
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue