aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Yang Gao <yangg@google.com>2015-02-11 11:45:22 -0800
committerGravatar Yang Gao <yangg@google.com>2015-02-11 11:45:22 -0800
commit99b07d1ea788ee126fa4b1aa8c84fb293147b177 (patch)
tree089c726fa588db0ceff31bfba4c3bca8b4fd9c01
parenteb8e7cd922a1c45fe581040a9138afa1f99f1404 (diff)
parent04c8ff0245e9cd0372fdcc5e1d48388316c60185 (diff)
fix conflict
-rw-r--r--include/grpc++/completion_queue.h2
-rw-r--r--src/cpp/server/server.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/grpc++/completion_queue.h b/include/grpc++/completion_queue.h
index 7f0677b4e5..3e68cf3776 100644
--- a/include/grpc++/completion_queue.h
+++ b/include/grpc++/completion_queue.h
@@ -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
diff --git a/src/cpp/server/server.cc b/src/cpp/server/server.cc
index 02fb383394..6d014a55f3 100644
--- a/src/cpp/server/server.cc
+++ b/src/cpp/server/server.cc
@@ -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: