Fix Vector::Insert() not using const iterator correctly.
This commit is contained in:
parent
807bd28a9d
commit
083bc0d42a
@ -218,7 +218,7 @@ public:
|
||||
MoveRange(pos + length, pos, size_ - pos - length);
|
||||
|
||||
T* destPtr = Buffer() + pos;
|
||||
for (Iterator it = start; it != end; ++it)
|
||||
for (ConstIterator it = start; it != end; ++it)
|
||||
*destPtr++ = *it;
|
||||
|
||||
return Begin() + pos;
|
||||
|
Loading…
Reference in New Issue
Block a user