diff options
| author | Ted Ross <tross@apache.org> | 2011-06-13 20:26:57 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2011-06-13 20:26:57 +0000 |
| commit | ca7d3a7f3d7f2f689206681e2ca74184be97e56f (patch) | |
| tree | ce6a406da8240e41702bcd735b76121110f26998 /cpp/src | |
| parent | fad11e078824aac1fb138583291238b370e6500e (diff) | |
| download | qpid-python-ca7d3a7f3d7f2f689206681e2ca74184be97e56f.tar.gz | |
QPID-3284 - There was a fix missing in one of the test files.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1135259 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
| -rw-r--r-- | cpp/src/tests/BrokerMgmtAgent.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/src/tests/BrokerMgmtAgent.cpp b/cpp/src/tests/BrokerMgmtAgent.cpp index d0c6668b72..1d5289dc90 100644 --- a/cpp/src/tests/BrokerMgmtAgent.cpp +++ b/cpp/src/tests/BrokerMgmtAgent.cpp @@ -599,13 +599,12 @@ namespace qpid { // populate the agent with multiple test objects const size_t objCount = 50; std::vector<TestManageable *> tmv; - uint32_t objLen; for (size_t i = 0; i < objCount; i++) { std::stringstream key; key << "testobj-" << i; TestManageable *tm = new TestManageable(agent, key.str()); - objLen = tm->GetManagementObject()->writePropertiesSize(); + (void) tm->GetManagementObject()->writePropertiesSize(); agent->addObject(tm->GetManagementObject(), key.str()); tmv.push_back(tm); } |
