2
0
mirror of https://github.com/boostorg/signals.git synced 2026-01-19 04:42:10 +00:00

Add deprecation warning to signal.hpp; turn off warning in tests suite

[SVN r84765]
This commit is contained in:
Marshall Clow
2013-06-13 17:37:52 +00:00
parent 47805948a9
commit c51af6b159
2 changed files with 9 additions and 0 deletions

View File

@@ -10,6 +10,14 @@
#ifndef BOOST_SIGNAL_HPP
#define BOOST_SIGNAL_HPP
#ifndef BOOST_SIGNALS_NO_DEPRECATION_WARNING
# if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__DMC__)
# pragma message ("Warning: Boost.Signals is no longer being maintained and is now deprecated. Please switch to Boost.Signals2. To disable this warning message, define BOOST_SIGNALS_NO_DEPRECATION_WARNING.")
# elif defined(__GNUC__) || defined(__HP_aCC) || defined(__SUNPRO_CC) || defined(__IBMCPP__)
# warning "Boost.Signals is no longer being maintained and is now deprecated. Please switch to Boost.Signals2. To disable this warning message, define BOOST_SIGNALS_NO_DEPRECATION_WARNING."
# endif
#endif
#ifndef BOOST_SIGNALS_MAX_ARGS
# define BOOST_SIGNALS_MAX_ARGS 10
#endif

View File

@@ -16,6 +16,7 @@ project
<hardcode-dll-paths>true
<library>../../test/build//boost_test_exec_monitor
<library>../build//boost_signals
<define>BOOST_SIGNALS_NO_DEPRECATION_WARNING
<define>BOOST_SIGNALS_STATIC_LINK
<link>static
;