summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2013-06-07 22:38:17 +0000
committerStephen D. Huston <shuston@apache.org>2013-06-07 22:38:17 +0000
commit988b1e0ac5f19c6a978b08fae6bb9419c1d4b5c4 (patch)
tree4a958b03e9a97482e94da61e0bc69285a1750f69
parent2515682bfbf2bef52ebb3b7bd45a965dd7aa8f1a (diff)
downloadqpid-python-988b1e0ac5f19c6a978b08fae6bb9419c1d4b5c4.tar.gz
Fix compile warning on Visual Studio. NO-JIRA.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1490856 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--cpp/src/qpid/ha/StatusCheck.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/ha/StatusCheck.cpp b/cpp/src/qpid/ha/StatusCheck.cpp
index f6371d018a..d73f2cf8b5 100644
--- a/cpp/src/qpid/ha/StatusCheck.cpp
+++ b/cpp/src/qpid/ha/StatusCheck.cpp
@@ -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;