fix conflict

pull/501/head
Yang Gao 10 years ago
commit 99b07d1ea7
  1. 2
      include/grpc++/completion_queue.h
  2. 2
      src/cpp/server/server.cc

@ -61,7 +61,7 @@ class CompletionQueueTag {
// Called prior to returning from Next(), return value
// is the status of the operation (return status is the default thing
// to do)
virtual void FinalizeResult(void *tag, bool *status) = 0;
virtual void FinalizeResult(void **tag, bool *status) = 0;
};
// grpc_completion_queue wrapper class

@ -142,7 +142,7 @@ class Server::MethodRequestData final : public CompletionQueueTag {
cq_, this));
}
void FinalizeResult(void *tag, bool *status) override {}
void FinalizeResult(void **tag, bool *status) override {}
class CallData {
public:

Loading…
Cancel
Save