diff options
| author | Gordon Sim <gsim@apache.org> | 2007-03-30 15:50:07 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2007-03-30 15:50:07 +0000 |
| commit | 72bca07ee53fb9476f268133f244d55d8f53d3b9 (patch) | |
| tree | 6e8400200b22188899144a025ecb1a6c5922cc7b /qpid/cpp/lib/broker/BrokerChannel.cpp | |
| parent | 61c7761f005dacfc5938a4d4d25b7120a8e21620 (diff) | |
| download | qpid-python-72bca07ee53fb9476f268133f244d55d8f53d3b9.tar.gz | |
Refactored the MessageStore interface to restrict visibility of broker core from store implementations.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@524139 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/lib/broker/BrokerChannel.cpp')
| -rw-r--r-- | qpid/cpp/lib/broker/BrokerChannel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/lib/broker/BrokerChannel.cpp b/qpid/cpp/lib/broker/BrokerChannel.cpp index 5673a2c42a..5897914f26 100644 --- a/qpid/cpp/lib/broker/BrokerChannel.cpp +++ b/qpid/cpp/lib/broker/BrokerChannel.cpp @@ -264,7 +264,7 @@ void Channel::ack(uint64_t firstTag, uint64_t lastTag){ throw ConnectionException(530, "Received ack for unrecognised delivery tag"); }else if(i!=j){ ack_iterator end = ++i; - for_each(j, end, mem_fun_ref(&DeliveryRecord::discard)); + for_each(j, end, bind2nd(mem_fun_ref(&DeliveryRecord::discard), 0)); unacked.erase(unacked.begin(), end); //recalculate the prefetch: |
