diff options
author | Craig Tiller <ctiller@google.com> | 2017-01-03 08:13:13 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-01-03 08:13:13 -0800 |
commit | 801c6cc5481285968eb18e19f8d1cf2ae0a4a204 (patch) | |
tree | f3c2fc13bd8797c474e29ffcad1213de9ebfd71a /include/grpc++ | |
parent | ff281b9d229da707f94fe4d55236dd683432e53a (diff) |
Fix some NULL usage
Diffstat (limited to 'include/grpc++')
-rw-r--r-- | include/grpc++/resource_quota.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/grpc++/resource_quota.h b/include/grpc++/resource_quota.h index 75e04d4e2f..68a514658d 100644 --- a/include/grpc++/resource_quota.h +++ b/include/grpc++/resource_quota.h @@ -37,6 +37,7 @@ struct grpc_resource_quota; #include <grpc++/impl/codegen/config.h> +#include <grpc++/impl/codegen/grpc_library.h> namespace grpc { @@ -44,7 +45,7 @@ namespace grpc { /// A ResourceQuota can be attached to a server (via ServerBuilder), or a client /// channel (via ChannelArguments). gRPC will attempt to keep memory used by /// all attached entities below the ResourceQuota bound. -class ResourceQuota final { +class ResourceQuota final : private GrpcLibraryCodegen { public: explicit ResourceQuota(const grpc::string& name); ResourceQuota(); |