summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/analyse_subtitles_job.cc3
-rw-r--r--src/lib/dcp_content.cc3
-rw-r--r--src/lib/dcp_encoder.cc3
-rw-r--r--src/lib/film.cc3
-rw-r--r--src/lib/player.cc3
-rw-r--r--src/lib/reel_writer.cc3
-rw-r--r--src/lib/writer.cc3
7 files changed, 21 insertions, 0 deletions
diff --git a/src/lib/analyse_subtitles_job.cc b/src/lib/analyse_subtitles_job.cc
index 7a1c4ab00..92fb9657c 100644
--- a/src/lib/analyse_subtitles_job.cc
+++ b/src/lib/analyse_subtitles_job.cc
@@ -33,6 +33,9 @@
using std::string;
using boost::shared_ptr;
using boost::weak_ptr;
+#if BOOST_VERSION >= 106100
+using namespace boost::placeholders;
+#endif
AnalyseSubtitlesJob::AnalyseSubtitlesJob (shared_ptr<const Film> film, shared_ptr<Content> content)
: Job (film)
diff --git a/src/lib/dcp_content.cc b/src/lib/dcp_content.cc
index f50778420..b4ee1444c 100644
--- a/src/lib/dcp_content.cc
+++ b/src/lib/dcp_content.cc
@@ -56,6 +56,9 @@ using boost::scoped_ptr;
using boost::optional;
using boost::function;
using boost::dynamic_pointer_cast;
+#if BOOST_VERSION >= 106100
+using namespace boost::placeholders;
+#endif
using dcp::raw_convert;
using namespace dcpomatic;
diff --git a/src/lib/dcp_encoder.cc b/src/lib/dcp_encoder.cc
index 438a73fd6..345e5511c 100644
--- a/src/lib/dcp_encoder.cc
+++ b/src/lib/dcp_encoder.cc
@@ -50,6 +50,9 @@ using boost::shared_ptr;
using boost::weak_ptr;
using boost::dynamic_pointer_cast;
using boost::optional;
+#if BOOST_VERSION >= 106100
+using namespace boost::placeholders;
+#endif
using namespace dcpomatic;
/** Construct a DCP encoder.
diff --git a/src/lib/film.cc b/src/lib/film.cc
index e2e77cce2..87037f51f 100644
--- a/src/lib/film.cc
+++ b/src/lib/film.cc
@@ -102,6 +102,9 @@ using boost::weak_ptr;
using boost::dynamic_pointer_cast;
using boost::optional;
using boost::is_any_of;
+#if BOOST_VERSION >= 106100
+using namespace boost::placeholders;
+#endif
using dcp::raw_convert;
using namespace dcpomatic;
diff --git a/src/lib/player.cc b/src/lib/player.cc
index 57fc7a67c..4417c940d 100644
--- a/src/lib/player.cc
+++ b/src/lib/player.cc
@@ -78,6 +78,9 @@ using boost::weak_ptr;
using boost::dynamic_pointer_cast;
using boost::optional;
using boost::scoped_ptr;
+#if BOOST_VERSION >= 106100
+using namespace boost::placeholders;
+#endif
using namespace dcpomatic;
int const PlayerProperty::VIDEO_CONTAINER_SIZE = 700;
diff --git a/src/lib/reel_writer.cc b/src/lib/reel_writer.cc
index 9272bfa30..a42c6182a 100644
--- a/src/lib/reel_writer.cc
+++ b/src/lib/reel_writer.cc
@@ -64,6 +64,9 @@ using std::vector;
using boost::shared_ptr;
using boost::optional;
using boost::dynamic_pointer_cast;
+#if BOOST_VERSION >= 106100
+using namespace boost::placeholders;
+#endif
using dcp::Data;
using dcp::raw_convert;
using namespace dcpomatic;
diff --git a/src/lib/writer.cc b/src/lib/writer.cc
index e2054dc03..d3fdc5128 100644
--- a/src/lib/writer.cc
+++ b/src/lib/writer.cc
@@ -62,6 +62,9 @@ using boost::shared_ptr;
using boost::weak_ptr;
using boost::dynamic_pointer_cast;
using boost::optional;
+#if BOOST_VERSION >= 106100
+using namespace boost::placeholders;
+#endif
using dcp::Data;
using namespace dcpomatic;