summaryrefslogtreecommitdiff
path: root/boost/bind.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/bind.hpp')
-rw-r--r--boost/bind.hpp19
1 files changed, 18 insertions, 1 deletions
diff --git a/boost/bind.hpp b/boost/bind.hpp
index fd3421ea5a..450120c7a7 100644
--- a/boost/bind.hpp
+++ b/boost/bind.hpp
@@ -10,7 +10,7 @@
//
// bind.hpp - binds function objects to arguments
//
-// Copyright (c) 2009 Peter Dimov
+// Copyright (c) 2009, 2015 Peter Dimov
//
// Distributed under the Boost Software License, Version 1.0.
// See accompanying file LICENSE_1_0.txt or copy at
@@ -21,4 +21,21 @@
#include <boost/bind/bind.hpp>
+#ifndef BOOST_BIND_NO_PLACEHOLDERS
+
+#if defined(BOOST_CLANG)
+# pragma clang diagnostic push
+# if __has_warning("-Wheader-hygiene")
+# pragma clang diagnostic ignored "-Wheader-hygiene"
+# endif
+#endif
+
+using namespace boost::placeholders;
+
+#if defined(BOOST_CLANG)
+# pragma clang diagnostic pop
+#endif
+
+#endif // #ifndef BOOST_BIND_NO_PLACEHOLDERS
+
#endif // #ifndef BOOST_BIND_HPP_INCLUDED