aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-02-08 15:14:29 -0800
committerGravatar Craig Tiller <ctiller@google.com>2016-02-08 15:14:29 -0800
commit64914ae6b5fc05ea220b94d349c869c72e90d004 (patch)
tree64426160f88c9303de0a1ee0f3bec687ee67e5fb /include
parent824a0903a51bd22e6ff1f4ba5cec5e7dde355ad9 (diff)
parenta1fc8fb95fd37e479b806cbe0f376e1f341141c5 (diff)
Merge pull request #5128 from yang-g/inherit_from_grpc_library
Add missing base class
Diffstat (limited to 'include')
-rw-r--r--include/grpc++/security/credentials.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/grpc++/security/credentials.h b/include/grpc++/security/credentials.h
index 4d64b5e227..e0806c0b7b 100644
--- a/include/grpc++/security/credentials.h
+++ b/include/grpc++/security/credentials.h
@@ -83,7 +83,7 @@ class ChannelCredentials : private GrpcLibrary {
/// authenticate with a server for a given call on a channel.
///
/// \see http://www.grpc.io/docs/guides/auth.html
-class CallCredentials {
+class CallCredentials : private GrpcLibrary {
public:
CallCredentials();
~CallCredentials();