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 | 8007fbae957412f7ff937194063a59c665e9ef47 (patch) | |
| tree | d9f6fc58d3fe5eed124462241da816b6d49d16e3 /cpp/src/tests/MessagingSessionTests.cpp | |
| parent | 9381e04813c110fd3ddfc9e015febed971c2c821 (diff) | |
| download | qpid-python-8007fbae957412f7ff937194063a59c665e9ef47.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/src/tests/MessagingSessionTests.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) |
