aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar hcaseyal <hcaseyal@gmail.com>2018-11-08 09:22:11 -0800
committerGravatar GitHub <noreply@github.com>2018-11-08 09:22:11 -0800
commit5203702f571f51af6df31819b94a0d10a3faf9ff (patch)
treeb1e966a3ebe82bcd117e04f3990dcd433a2462e3
parent4e1610bd41f2e2b563c1a325d6769dbdd2163022 (diff)
parente42afb0d63757c0e44ff483724e9d44b6bac2d86 (diff)
Merge pull request #17155 from hcaseyal/fix_namespace
Make namespace more explicit.
-rw-r--r--test/cpp/util/byte_buffer_proto_helper.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/cpp/util/byte_buffer_proto_helper.h b/test/cpp/util/byte_buffer_proto_helper.h
index eb923eccb5..3d01fb2468 100644
--- a/test/cpp/util/byte_buffer_proto_helper.h
+++ b/test/cpp/util/byte_buffer_proto_helper.h
@@ -27,12 +27,13 @@
namespace grpc {
namespace testing {
-bool ParseFromByteBuffer(ByteBuffer* buffer, grpc::protobuf::Message* message);
+bool ParseFromByteBuffer(ByteBuffer* buffer,
+ ::grpc::protobuf::Message* message);
std::unique_ptr<ByteBuffer> SerializeToByteBuffer(
- grpc::protobuf::Message* message);
+ ::grpc::protobuf::Message* message);
-bool SerializeToByteBufferInPlace(grpc::protobuf::Message* message,
+bool SerializeToByteBufferInPlace(::grpc::protobuf::Message* message,
ByteBuffer* buffer);
} // namespace testing