diff options
author | Alan Conway <aconway@apache.org> | 2010-04-07 19:59:20 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2010-04-07 19:59:20 +0000 |
commit | 78df5d55bc32a2dbd94b259f1c843b259e745c47 (patch) | |
tree | 9e7f9104db64152f39b060beb508cbd70bcfa7b5 /cpp/src/tests/Statistics.cpp | |
parent | db10ca2521cff96eae94d11a8acb51e8173aba3c (diff) | |
download | qpid-python-78df5d55bc32a2dbd94b259f1c843b259e745c47.tar.gz |
Fix compiler warnings "virtual function but no virtual destructor".
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@931660 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/Statistics.cpp')
-rw-r--r-- | cpp/src/tests/Statistics.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/src/tests/Statistics.cpp b/cpp/src/tests/Statistics.cpp index 24fac8d100..09286e3298 100644 --- a/cpp/src/tests/Statistics.cpp +++ b/cpp/src/tests/Statistics.cpp @@ -25,6 +25,8 @@ namespace qpid { namespace tests { +Statistic::~Statistic() {} + Throughput::Throughput() : messages(0), started(false) {} void Throughput::message(const messaging::Message&) { @@ -82,6 +84,8 @@ void ThroughputAndLatency::report(std::ostream& o) const { ReporterBase::ReporterBase(std::ostream& o, int batch) : wantBatch(batch), batchCount(0), headerPrinted(false), out(o) {} +ReporterBase::~ReporterBase() {} + /** Count message in the statistics */ void ReporterBase::message(const messaging::Message& m) { if (!overall.get()) overall = create(); |