diff options
author | Craig Tiller <ctiller@google.com> | 2017-10-08 21:48:13 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-10-08 21:48:13 -0700 |
commit | 3be5e1e0cd4f861e58290fbccf34e92f83eb1f67 (patch) | |
tree | c1e1aa1ffc2efaa5fc44a4477eff86c446e3385e /src/core/lib | |
parent | 0cdfb8722d6278c9adc0a919baf803906d4c8927 (diff) |
Missing destructor
Diffstat (limited to 'src/core/lib')
-rw-r--r-- | src/core/lib/transport/bdp_estimator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/transport/bdp_estimator.h b/src/core/lib/transport/bdp_estimator.h index d8f5f8ba95..a4acf30ded 100644 --- a/src/core/lib/transport/bdp_estimator.h +++ b/src/core/lib/transport/bdp_estimator.h @@ -35,7 +35,7 @@ namespace grpc_core { class BdpEstimator { public: explicit BdpEstimator(const char *name); - ~BdpEstimator(); + ~BdpEstimator() {} // Returns true if a reasonable estimate could be obtained bool EstimateBdp(int64_t *estimate_out) const { |