diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-25 09:50:10 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-25 10:09:29 +0200 |
commit | c5a2e968de63bbed210ec43327f3c8c3f286393d (patch) | |
tree | ae6957dc0b97e17ffe64db91da76baabe255d078 /sax | |
parent | c2e38d4dc455e47cee72b7b78e4f2dc0cf0e624c (diff) |
cid#1371329 Misused comma operator
Change-Id: Iba29bce22c59b25a452b454e2b7cad3c4e95f3a3
Diffstat (limited to 'sax')
-rw-r--r-- | sax/source/fastparser/fastparser.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sax/source/fastparser/fastparser.cxx b/sax/source/fastparser/fastparser.cxx index f35aceae7f9b..03ea471d225b 100644 --- a/sax/source/fastparser/fastparser.cxx +++ b/sax/source/fastparser/fastparser.cxx @@ -777,7 +777,7 @@ void FastSaxParserImpl::parseStream(const InputSource& maStructSource) osl::ResettableMutexGuard aGuard(rEntity.maEventProtector); while (!rEntity.maPendingEvents.empty()) { - if (rEntity.maPendingEvents.size() <= rEntity.mnEventLowWater) + if (rEntity.maPendingEvents.size() <= Entity::mnEventLowWater) rEntity.maProduceResume.set(); // start producer again EventList *pEventList = rEntity.maPendingEvents.front(); @@ -789,7 +789,7 @@ void FastSaxParserImpl::parseStream(const InputSource& maStructSource) aGuard.reset(); // lock - if ( rEntity.maPendingEvents.size() <= rEntity.mnEventLowWater ) + if ( rEntity.maPendingEvents.size() <= Entity::mnEventLowWater ) { aGuard.clear(); for (auto aEventIt = pEventList->maEvents.begin(); |