diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-10-20 21:12:52 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-10-20 21:12:52 +0200 |
| commit | 15d37f26e84828c20b6df163665f411e164764d9 (patch) | |
| tree | 870cff1411d4348293d80b67933fce08579ef011 /src/lib | |
| parent | 5da8d7521a600a5924fd10c52db21a367db72f97 (diff) | |
Fix warnings about placeholders from newer boost versions (1.74, or maybe earlier).osx-warnings
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/encode_server_finder.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/encode_server_finder.cc b/src/lib/encode_server_finder.cc index 1c6120257..6444964e4 100644 --- a/src/lib/encode_server_finder.cc +++ b/src/lib/encode_server_finder.cc @@ -27,7 +27,11 @@ #include "dcpomatic_socket.h" #include <dcp/raw_convert.h> #include <libcxml/cxml.h> +#if BOOST_VERSION >= 107400 #include <boost/bind/placeholders.hpp> +#else +#include <boost/bind/bind.hpp> +#endif #include <boost/lambda/lambda.hpp> #include <iostream> |
