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-unsubscr...@qpid.apache.org For additional commands, e-mail: commits-h...@qpid.apache.org