summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2013-04-22 16:17:13 +0000
committerGordon Sim <gsim@apache.org>2013-04-22 16:17:13 +0000
commit0f6e0342e5a2c14abc0925f089ad030fe5f7a0ae (patch)
tree3dbb29b4e088f1ccf9ffdb65b1a511880553bdea /cpp
parentfc756bf58dd5e4b636df8972c052715765e60155 (diff)
downloadqpid-python-0f6e0342e5a2c14abc0925f089ad030fe5f7a0ae.tar.gz
Fix warning about uninitialised variable when running test under valgrind; caused by r1469088, QPID-3689
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1470605 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r--cpp/src/tests/qpid-client-test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/tests/qpid-client-test.cpp b/cpp/src/tests/qpid-client-test.cpp
index 2f5e8e5afe..9198324f93 100644
--- a/cpp/src/tests/qpid-client-test.cpp
+++ b/cpp/src/tests/qpid-client-test.cpp
@@ -47,7 +47,7 @@ struct Args : public TestOptions {
uint msgSize;
bool verbose;
- Args() : TestOptions("Simple test of Qpid c++ client; sends and receives a single message."), msgSize(26)
+ Args() : TestOptions("Simple test of Qpid c++ client; sends and receives a single message."), msgSize(26), verbose(false)
{
addOptions()
("size", optValue(msgSize, "N"), "message size")