summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2010-07-15 22:02:08 +0000
committerStephen D. Huston <shuston@apache.org>2010-07-15 22:02:08 +0000
commitdd6357dc07665fc2542d6f4e5aae9171dfc45011 (patch)
treed9f6fc58d3fe5eed124462241da816b6d49d16e3 /cpp
parent668654fbce76a1a8831a373d0fc4bd363b0b57a1 (diff)
downloadqpid-python-dd6357dc07665fc2542d6f4e5aae9171dfc45011.tar.gz
Fix unreferenced local variable warning
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@964624 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r--cpp/src/tests/MessagingSessionTests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/tests/MessagingSessionTests.cpp b/cpp/src/tests/MessagingSessionTests.cpp
index 268bf3fbd3..d6992fc049 100644
--- a/cpp/src/tests/MessagingSessionTests.cpp
+++ b/cpp/src/tests/MessagingSessionTests.cpp
@@ -766,7 +766,7 @@ QPID_AUTO_TEST_CASE(testExclusiveSubscriber)
fix.session.createReceiver(address);
fix.session.sync();
BOOST_FAIL("Expected exception.");
- } catch (const MessagingException& e) {}
+ } catch (const MessagingException& /*e*/) {}
}
QPID_AUTO_TEST_CASE(testAuthenticatedUsername)