summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2010-04-19 14:37:24 +0000
committerStephen D. Huston <shuston@apache.org>2010-04-19 14:37:24 +0000
commit873e9ab2b67c071fb6af4024206f54bd3c0b6e3e (patch)
treeead8f6efcb39dc5295d950dd5038ee8af1c9bc59 /cpp/src
parent2a1d7b329c709940ec121b7685c8f167c5d7ac47 (diff)
downloadqpid-python-873e9ab2b67c071fb6af4024206f54bd3c0b6e3e.tar.gz
Fix g++ compile warning-turned-error
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@935595 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/qpid/store/MessageStorePlugin.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/qpid/store/MessageStorePlugin.cpp b/cpp/src/qpid/store/MessageStorePlugin.cpp
index fdb947eef2..f85787d1a3 100644
--- a/cpp/src/qpid/store/MessageStorePlugin.cpp
+++ b/cpp/src/qpid/store/MessageStorePlugin.cpp
@@ -453,6 +453,8 @@ MessageStorePlugin::recover(broker::RecoveryManager& recoverer)
case QueueEntry::REMOVING:
dtxMap[j->xid]->dequeue(iQ->second, msg);
break;
+ default:
+ break;
}
}
}