You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by sh...@apache.org on 2013/06/08 00:38:17 UTC

svn commit: r1490856 - /qpid/trunk/qpid/cpp/src/qpid/ha/StatusCheck.cpp

Author: shuston
Date: Fri Jun  7 22:38:17 2013
New Revision: 1490856

URL: http://svn.apache.org/r1490856
Log:
Fix compile warning on Visual Studio. NO-JIRA.

Modified:
    qpid/trunk/qpid/cpp/src/qpid/ha/StatusCheck.cpp

Modified: qpid/trunk/qpid/cpp/src/qpid/ha/StatusCheck.cpp
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/qpid/ha/StatusCheck.cpp?rev=1490856&r1=1490855&r2=1490856&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/qpid/ha/StatusCheck.cpp (original)
+++ qpid/trunk/qpid/cpp/src/qpid/ha/StatusCheck.cpp Fri Jun  7 22:38:17 2013
@@ -100,11 +100,11 @@ void StatusCheckThread::run() {
         QPID_LOG(info, statusCheck.logPrefix << "Checking status of " << url <<  ": " << error.what());
     }
     try { c.close(); }
-    catch(const exception& e) {
+    catch(const exception&) {
         QPID_LOG(warning, statusCheck.logPrefix << "Error closing status check connection to " << url);
     }
     try { c.close(); }
-    catch(const exception& e) {
+    catch(const exception&) {
         QPID_LOG(warning, "Error closing status check connection to " << url);
     }
     delete this;



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