You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by gs...@apache.org on 2015/07/14 10:23:37 UTC

svn commit: r1690873 - /qpid/trunk/qpid/cpp/src/qpid/client/ConnectionImpl.cpp

Author: gsim
Date: Tue Jul 14 08:23:37 2015
New Revision: 1690873

URL: http://svn.apache.org/r1690873
Log:
QPID-6256: prevent unused local variable warning

Modified:
    qpid/trunk/qpid/cpp/src/qpid/client/ConnectionImpl.cpp

Modified: qpid/trunk/qpid/cpp/src/qpid/client/ConnectionImpl.cpp
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/qpid/client/ConnectionImpl.cpp?rev=1690873&r1=1690872&r2=1690873&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/qpid/client/ConnectionImpl.cpp (original)
+++ qpid/trunk/qpid/cpp/src/qpid/client/ConnectionImpl.cpp Tue Jul 14 08:23:37 2015
@@ -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;
     }



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org