From 1a008057b08edf34f68b8b97ef886f2c1415aeba Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Wed, 21 Apr 2010 14:48:58 +0000 Subject: Consistent use of string constants for message property keys in sender/receiver tests. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@936337 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/tests/Statistics.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'cpp/src/tests/Statistics.cpp') diff --git a/cpp/src/tests/Statistics.cpp b/cpp/src/tests/Statistics.cpp index c002bc6a6a..2452dc8be9 100644 --- a/cpp/src/tests/Statistics.cpp +++ b/cpp/src/tests/Statistics.cpp @@ -56,9 +56,11 @@ ThroughputAndLatency::ThroughputAndLatency() : samples(0) {} +const std::string TS = "ts"; + void ThroughputAndLatency::message(const messaging::Message& m) { Throughput::message(m); - types::Variant::Map::const_iterator i = m.getProperties().find("ts"); + types::Variant::Map::const_iterator i = m.getProperties().find(TS); if (i != m.getProperties().end()) { ++samples; int64_t start(i->second.asInt64()); -- cgit v1.2.1