summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
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
commitc5e9a0913d3e4e13d69b9e5ea18625183772b5c5 (patch)
treed40a6221fb7e090a6cdfc0759b3eb90f1807e9cd /qpid/cpp/src
parent69a704d9a84797a7bc4a00f871df6090b580f046 (diff)
downloadqpid-python-c5e9a0913d3e4e13d69b9e5ea18625183772b5c5.tar.gz
Fix compile warning on Visual Studio. NO-JIRA.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1490856 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/ha/StatusCheck.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/qpid/ha/StatusCheck.cpp b/qpid/cpp/src/qpid/ha/StatusCheck.cpp
index f6371d018a..d73f2cf8b5 100644
--- a/qpid/cpp/src/qpid/ha/StatusCheck.cpp
+++ b/qpid/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;