Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/murmur/MurmurGRPCImpl.h')
-rw-r--r--src/murmur/MurmurGRPCImpl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/murmur/MurmurGRPCImpl.h b/src/murmur/MurmurGRPCImpl.h
index 69ec36d2a..0b9b688d3 100644
--- a/src/murmur/MurmurGRPCImpl.h
+++ b/src/murmur/MurmurGRPCImpl.h
@@ -9,7 +9,7 @@
# include <QtCore/QCoreApplication>
-# include <boost/bind.hpp>
+# include <boost/bind/bind.hpp>
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wunused-parameter"
@@ -140,7 +140,7 @@ public:
RPCCall(MurmurRPCImpl *rpcImpl) : m_refs(0), rpc(rpcImpl) { ref(); }
virtual ~RPCCall() {}
virtual ::boost::function< void(bool) > *done() {
- auto done_fn = ::boost::bind(&RPCCall::finish, this, _1);
+ auto done_fn = ::boost::bind(&RPCCall::finish, this, boost::placeholders::_1);
return new ::boost::function< void(bool) >(done_fn);
}
@@ -215,7 +215,7 @@ public:
private:
void *writeCB() {
- auto callback = ::boost::bind(&RPCSingleStreamCall< InType, OutType >::writeCallback, this, _1);
+ auto callback = ::boost::bind(&RPCSingleStreamCall< InType, OutType >::writeCallback, this, boost::placeholders::_1);
return new ::boost::function< void(bool) >(callback);
}