summaryrefslogtreecommitdiff
path: root/test/make_digest_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-08-08 14:38:47 +0200
committerCarl Hetherington <cth@carlh.net>2023-08-08 14:38:47 +0200
commit20b6a9862bbde42e9ce038b33ec049194a8146a5 (patch)
treea198e280033c6636191590159293b64b1e02b426 /test/make_digest_test.cc
parent474aeac068c193bc429d2c1f417290b2b8cd1810 (diff)
Fix boost bind placeholder warnings.
Diffstat (limited to 'test/make_digest_test.cc')
-rw-r--r--test/make_digest_test.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/make_digest_test.cc b/test/make_digest_test.cc
index 98792e62..c710f572 100644
--- a/test/make_digest_test.cc
+++ b/test/make_digest_test.cc
@@ -34,12 +34,17 @@
#include "array_data.h"
#include "util.h"
-#include <boost/bind.hpp>
+#include <boost/bind/bind.hpp>
#include <boost/random.hpp>
#include <boost/test/unit_test.hpp>
#include <sys/time.h>
+#if BOOST_VERSION >= 106100
+using namespace boost::placeholders;
+#endif
+
+
void progress (float)
{