mirror of
https://github.com/boostorg/bind.git
synced 2025-08-03 06:44:36 +02:00
Only issue the deprecation message when BOOST_BIND_GLOBAL_PLACEHOLDERS isn't defined
This commit is contained in:
@@ -23,14 +23,25 @@
|
|||||||
// namespace are not a good practice and this use is deprecated.
|
// namespace are not a good practice and this use is deprecated.
|
||||||
// Please switch to including <boost/bind/bind.hpp> directly,
|
// Please switch to including <boost/bind/bind.hpp> directly,
|
||||||
// adding the using directive locally where appropriate.
|
// adding the using directive locally where appropriate.
|
||||||
|
// Alternatively, the existing behavior may be preserved by defining
|
||||||
#include <boost/config/header_deprecated.hpp>
|
// the macro BOOST_BIND_GLOBAL_PLACEHOLDERS.
|
||||||
BOOST_HEADER_DEPRECATED( "<boost/bind/bind.hpp>" )
|
|
||||||
|
|
||||||
#include <boost/bind/bind.hpp>
|
#include <boost/bind/bind.hpp>
|
||||||
|
#include <boost/config/pragma_message.hpp>
|
||||||
|
|
||||||
#ifndef BOOST_BIND_NO_PLACEHOLDERS
|
#ifndef BOOST_BIND_NO_PLACEHOLDERS
|
||||||
|
|
||||||
|
#if !defined(BOOST_BIND_GLOBAL_PLACEHOLDERS)
|
||||||
|
|
||||||
|
BOOST_PRAGMA_MESSAGE(
|
||||||
|
"The practice of declaring the Bind placeholders (_1, _2, ...) "
|
||||||
|
"in the global namespace is deprecated. Please use "
|
||||||
|
"<boost/bind/bind.hpp> + using namespace boost::placeholders, "
|
||||||
|
"or define BOOST_BIND_GLOBAL_PLACEHOLDERS to retain the current behavior."
|
||||||
|
)
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(BOOST_CLANG)
|
#if defined(BOOST_CLANG)
|
||||||
# pragma clang diagnostic push
|
# pragma clang diagnostic push
|
||||||
# if __has_warning("-Wheader-hygiene")
|
# if __has_warning("-Wheader-hygiene")
|
||||||
|
Reference in New Issue
Block a user