diff options
author | Gordon Sim <gsim@apache.org> | 2015-07-14 08:23:37 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2015-07-14 08:23:37 +0000 |
commit | 22807e3577a1e782448c83ba572ea2621a5d06e4 (patch) | |
tree | 30444a1878664f4c5aa768488c2989411db33525 | |
parent | 87596b464716492c63cdfa73790fd0015c533645 (diff) | |
download | qpid-python-22807e3577a1e782448c83ba572ea2621a5d06e4.tar.gz |
QPID-6256: prevent unused local variable warning
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1690873 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | qpid/cpp/src/qpid/client/ConnectionImpl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/client/ConnectionImpl.cpp b/qpid/cpp/src/qpid/client/ConnectionImpl.cpp index 98d04d8d66..a9d88bdb87 100644 --- a/qpid/cpp/src/qpid/client/ConnectionImpl.cpp +++ b/qpid/cpp/src/qpid/client/ConnectionImpl.cpp @@ -286,7 +286,7 @@ void ConnectionImpl::open() try { handler.waitForOpen(); QPID_LOG(info, *this << " connected to " << protocol << ":" << host << ":" << port); - } catch (const Exception& e) { + } catch (const Exception&) { connector->checkVersion(version); throw; } |