diff options
author | Stephen D. Huston <shuston@apache.org> | 2010-07-15 22:02:08 +0000 |
---|---|---|
committer | Stephen D. Huston <shuston@apache.org> | 2010-07-15 22:02:08 +0000 |
commit | dd6357dc07665fc2542d6f4e5aae9171dfc45011 (patch) | |
tree | d9f6fc58d3fe5eed124462241da816b6d49d16e3 /cpp | |
parent | 668654fbce76a1a8831a373d0fc4bd363b0b57a1 (diff) | |
download | qpid-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.cpp | 2 |
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) |