Disable deprecation warning for old boost

There are a few version of boost which deprecated global placeholders
but do not yet support std placeholders. Simply suppress warning for
those cases.

Signed-off-by: Ralph Sennhauser <ralph.sennhauser@gmail.com>
This commit is contained in:
Ralph Sennhauser
2025-03-03 21:24:55 +01:00
parent 7494602de5
commit a09b2cc242
@@ -22,6 +22,7 @@
# include <functional>
using namespace std::placeholders;
#else
# define BOOST_BIND_GLOBAL_PLACEHOLDERS 1
# include <boost/bind.hpp>
#endif