mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-31 20:04:29 +02:00
Remove BOOST_UNORDERED_EMPLACE_ARGSn macros
They're not used anywhere now.
This commit is contained in:
@@ -514,20 +514,12 @@ struct convert_from_anything
|
|||||||
|
|
||||||
#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
|
#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
|
||||||
|
|
||||||
#define BOOST_UNORDERED_EMPLACE_ARGS1(a0) a0
|
|
||||||
#define BOOST_UNORDERED_EMPLACE_ARGS2(a0, a1) a0, a1
|
|
||||||
#define BOOST_UNORDERED_EMPLACE_ARGS3(a0, a1, a2) a0, a1, a2
|
|
||||||
|
|
||||||
#define BOOST_UNORDERED_EMPLACE_TEMPLATE typename... Args
|
#define BOOST_UNORDERED_EMPLACE_TEMPLATE typename... Args
|
||||||
#define BOOST_UNORDERED_EMPLACE_ARGS BOOST_FWD_REF(Args)... args
|
#define BOOST_UNORDERED_EMPLACE_ARGS BOOST_FWD_REF(Args)... args
|
||||||
#define BOOST_UNORDERED_EMPLACE_FORWARD boost::forward<Args>(args)...
|
#define BOOST_UNORDERED_EMPLACE_FORWARD boost::forward<Args>(args)...
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
#define BOOST_UNORDERED_EMPLACE_ARGS1 create_emplace_args
|
|
||||||
#define BOOST_UNORDERED_EMPLACE_ARGS2 create_emplace_args
|
|
||||||
#define BOOST_UNORDERED_EMPLACE_ARGS3 create_emplace_args
|
|
||||||
|
|
||||||
#define BOOST_UNORDERED_EMPLACE_TEMPLATE typename Args
|
#define BOOST_UNORDERED_EMPLACE_TEMPLATE typename Args
|
||||||
#define BOOST_UNORDERED_EMPLACE_ARGS Args const& args
|
#define BOOST_UNORDERED_EMPLACE_ARGS Args const& args
|
||||||
#define BOOST_UNORDERED_EMPLACE_FORWARD args
|
#define BOOST_UNORDERED_EMPLACE_FORWARD args
|
||||||
|
Reference in New Issue
Block a user