diff --git a/src/boost_bind_bind.hpp b/src/boost_bind_bind.hpp new file mode 100644 index 0000000000..ef02d253f3 --- /dev/null +++ b/src/boost_bind_bind.hpp @@ -0,0 +1,21 @@ + +// Workaround for boost older than 1.60 +#ifndef BOOST_BIND_BIND_HPP_INCLUDED +#include +#endif + +#include +#if (BOOST_VERSION < 106000) +namespace boost { namespace placeholders { + using ::_1; + using ::_2; + using ::_3; + using ::_4; + using ::_5; + using ::_6; + using ::_7; + using ::_8; + using ::_9; +}}; +#endif +