mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Do not mix several names for the same variable
This confuses coverity, but is probably harmless. Fxies coverity issue 23374
This commit is contained in:
parent
d9c9c6b36d
commit
fd7aa2d62d
@ -166,11 +166,11 @@ void Encoding::init() const
|
||||
}
|
||||
}
|
||||
lyxerr.enable();
|
||||
CharSet::iterator it = encodable_.find(start_encodable_);
|
||||
while (it != encodable_.end()) {
|
||||
CharSet::iterator it = encodable.find(start_encodable);
|
||||
while (it != encodable.end()) {
|
||||
encodable.erase(it);
|
||||
++start_encodable;
|
||||
it = encodable_.find(start_encodable_);
|
||||
it = encodable.find(start_encodable);
|
||||
}
|
||||
const_cast<Encoding *>(this)->complete_ = true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user