diff options
| author | Gordon Sim <gsim@apache.org> | 2006-10-31 15:38:36 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2006-10-31 15:38:36 +0000 |
| commit | 1150be6d66a943d899e25af4cb876e7f68c657d9 (patch) | |
| tree | 582b89c2b738b66255deecbacf089a91c07d3348 /cpp/src/qpid/broker/AccumulatedAck.cpp | |
| parent | 2c78ceb1faaad9c9e57ad7c815ceea82f9ff15a1 (diff) | |
| download | qpid-python-1150be6d66a943d899e25af4cb876e7f68c657d9.tar.gz | |
Added doc & unit tests.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@469530 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/AccumulatedAck.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/AccumulatedAck.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/AccumulatedAck.cpp b/cpp/src/qpid/broker/AccumulatedAck.cpp index 060e940309..84ddcee556 100644 --- a/cpp/src/qpid/broker/AccumulatedAck.cpp +++ b/cpp/src/qpid/broker/AccumulatedAck.cpp @@ -25,7 +25,7 @@ void AccumulatedAck::update(u_int64_t tag, bool multiple){ if(multiple){ if(tag > range) range = tag; //else don't care, it is already counted - }else if(tag < range){ + }else if(tag > range){ individual.push_back(tag); } } |
