summaryrefslogtreecommitdiff
path: root/cpp/src
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
commitdebe77165db39ca6689dbe5fe45f0bd54cdc0518 (patch)
tree3dbb29b4e088f1ccf9ffdb65b1a511880553bdea /cpp/src
parentc6fe0c652cb5554aad33077b6989e8dd4b9baed2 (diff)
downloadqpid-python-debe77165db39ca6689dbe5fe45f0bd54cdc0518.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/src')
-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")