aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc++/ext
diff options
context:
space:
mode:
authorGravatar vjpai <vpai@google.com>2016-06-17 15:55:00 -0700
committerGravatar vjpai <vpai@google.com>2016-06-17 15:55:00 -0700
commit7b4dc532dd37271f883f9b30f28c7dd50baf41cb (patch)
tree9d7ee1d91fbb624fe2582c7ac9f72333b86dc396 /include/grpc++/ext
parentf486881fe932021a83a3d03e200a7d07fec290d5 (diff)
Stop using global namespace on a template param
Diffstat (limited to 'include/grpc++/ext')
-rw-r--r--include/grpc++/ext/proto_server_reflection_plugin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/grpc++/ext/proto_server_reflection_plugin.h b/include/grpc++/ext/proto_server_reflection_plugin.h
index 2b61867258..3e54882d41 100644
--- a/include/grpc++/ext/proto_server_reflection_plugin.h
+++ b/include/grpc++/ext/proto_server_reflection_plugin.h
@@ -56,7 +56,7 @@ class ProtoServerReflectionPlugin : public ::grpc::ServerBuilderPlugin {
bool has_sync_methods() const GRPC_OVERRIDE;
private:
- std::shared_ptr< ::grpc::ProtoServerReflection> reflection_service_;
+ std::shared_ptr<grpc::ProtoServerReflection> reflection_service_;
};
// Add proto reflection plugin to ServerBuilder. This function should be called