diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-08-08 14:38:47 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-08-08 14:38:47 +0200 |
| commit | 20b6a9862bbde42e9ce038b33ec049194a8146a5 (patch) | |
| tree | a198e280033c6636191590159293b64b1e02b426 /tools | |
| parent | 474aeac068c193bc429d2c1f417290b2b8cd1810 (diff) | |
Fix boost bind placeholder warnings.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/dcpverify.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/dcpverify.cc b/tools/dcpverify.cc index 1b9bab80..770dd78f 100644 --- a/tools/dcpverify.cc +++ b/tools/dcpverify.cc @@ -37,7 +37,7 @@ #include "raw_convert.h" #include "verify.h" #include "version.h" -#include <boost/bind.hpp> +#include <boost/bind/bind.hpp> #include <boost/filesystem.hpp> #include <boost/optional.hpp> #include <getopt.h> @@ -52,6 +52,9 @@ using std::string; using std::vector; using boost::bind; using boost::optional; +#if BOOST_VERSION >= 106100 +using namespace boost::placeholders; +#endif static void |
