aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2019-01-03 18:32:10 -0800
committerGravatar Yash Tibrewal <yashkt@google.com>2019-01-03 18:32:10 -0800
commit2b4781ca526b0823fbea263a5c7b07fdf8abe41d (patch)
treee8947f32701d8f4cda1da38278d832beeedae0c7 /include
parentdf49204b975b898392655a4af5a0597d7b2ec850 (diff)
Use Status() instead of Status::OK to avoid issues with codegen_test_minimal
Diffstat (limited to 'include')
-rw-r--r--include/grpcpp/impl/codegen/call_op_set.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/grpcpp/impl/codegen/call_op_set.h b/include/grpcpp/impl/codegen/call_op_set.h
index 88c744a3fc..e8a4d389f1 100644
--- a/include/grpcpp/impl/codegen/call_op_set.h
+++ b/include/grpcpp/impl/codegen/call_op_set.h
@@ -379,7 +379,7 @@ Status CallOpSendMessage::SendMessage(const M& message, WriteOptions options) {
if (msg_ == nullptr) {
return serializer_(&message);
}
- return Status::OK;
+ return Status();
}
template <class M>