Minor buffer_vector::const_iterator fix

This commit is contained in:
Alex Zolotarev 2011-05-26 02:05:03 +02:00 committed by Alex Zolotarev
parent 1752fcff93
commit 60e67a7cbd

View file

@ -174,7 +174,7 @@ public:
}
}
template <typename IterT> void insert(T const * where, IterT beg, IterT end)
template <typename IterT> void insert(const_iterator where, IterT beg, IterT end)
{
ptrdiff_t const pos = where - data();
ASSERT_GREATER_OR_EQUAL(pos, 0, ());