Fix compile error

pull/431/head
Craig Tiller 10 years ago
parent 7f78d71b8d
commit df2c957eee
  1. 1
      include/grpc++/call.h
  2. 3
      include/grpc++/config.h
  3. 2
      src/cpp/common/call.cc

@ -38,6 +38,7 @@
#include <grpc++/completion_queue.h>
#include <memory>
#include <vector>
namespace google {
namespace protobuf {

@ -39,6 +39,7 @@
namespace grpc {
typedef std::string string;
}
} // namespace grpc
#endif // __GRPCPP_CONFIG_H__

@ -37,7 +37,7 @@
namespace grpc {
void Call::PerformOps(CallOpBuffer* buffer, void* tag) {
channel_->PerformOpsOnCall(buffer, tag, call_);
channel_->PerformOpsOnCall(buffer, tag, this);
}
} // namespace grpc

Loading…
Cancel
Save