Fix boost bind placeholder warnings.
[libdcp.git] / test / asset_test.cc
index c52ebdd11c5b0ef61c1b598c5da874136ccbc88a..b4a48296c8cc388be264ef68c5afce85c9662060 100644 (file)
 
 #include "asset.h"
 #include "equality_options.h"
-#include <boost/bind.hpp>
+#include <boost/bind/bind.hpp>
 #include <boost/test/unit_test.hpp>
 
 
 using std::string;
 using std::shared_ptr;
 using std::make_shared;
+#if BOOST_VERSION >= 106100
+using namespace boost::placeholders;
+#endif
+
 
 
 class DummyAsset : public dcp::Asset