diff options
author | Alan Conway <aconway@apache.org> | 2008-05-20 19:48:11 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2008-05-20 19:48:11 +0000 |
commit | 57557de17cd49b65cdc1e441f1bd0703b5bab861 (patch) | |
tree | 93d44cec5d83d13ae4c719979c6e8bfe7480a145 /qpid/cpp/src | |
parent | 5bb0604473b2367218c297927d578d19951ed775 (diff) | |
download | qpid-python-57557de17cd49b65cdc1e441f1bd0703b5bab861.tar.gz |
Fix build error.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@658403 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r-- | qpid/cpp/src/qpid/broker/SessionState.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/broker/SessionState.cpp b/qpid/cpp/src/qpid/broker/SessionState.cpp index c851162046..cb5ae01793 100644 --- a/qpid/cpp/src/qpid/broker/SessionState.cpp +++ b/qpid/cpp/src/qpid/broker/SessionState.cpp @@ -267,7 +267,8 @@ void SessionState::sendCompletion() { handler->sendCompletion(); } void SessionState::senderCompleted(const SequenceSet& commands) { qpid::SessionState::senderCompleted(commands); - commands.for_each(boost::bind(&SemanticState::completed, &semanticState, _1, _2)); + for (SequenceSet::RangeIterator i = commands.rangesBegin(); i != commands.rangesEnd(); i++) + semanticState.completed(i->first(), i->last()); } void SessionState::readyToSend() { |