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 /test/asset_test.cc | |
| parent | 474aeac068c193bc429d2c1f417290b2b8cd1810 (diff) | |
Fix boost bind placeholder warnings.
Diffstat (limited to 'test/asset_test.cc')
| -rw-r--r-- | test/asset_test.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/asset_test.cc b/test/asset_test.cc index c52ebdd1..b4a48296 100644 --- a/test/asset_test.cc +++ b/test/asset_test.cc @@ -34,13 +34,17 @@ #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 |
