Fix Vector::Insert() not using const iterator correctly.

This commit is contained in:
Lasse Öörni 2014-10-07 19:34:34 +03:00
parent 807bd28a9d
commit 083bc0d42a

View File

@ -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;