Reinitializing list's begin iterator after few elements were erased from the head
This commit is contained in:
parent
7a04f3d708
commit
cda45b5131
1 changed files with 1 additions and 1 deletions
|
@ -544,7 +544,7 @@ public:
|
||||||
{
|
{
|
||||||
while (end() - pc >= (long)b.size() && memcmp(&pc[0], &b[0], b.size()) == 0)
|
while (end() - pc >= (long)b.size() && memcmp(&pc[0], &b[0], b.size()) == 0)
|
||||||
{
|
{
|
||||||
erase(pc, pc + b.size());
|
pc = erase(pc, pc + b.size());
|
||||||
++nFound;
|
++nFound;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue