Another assertion that got transformed in 1b1f8dd2

This commit is contained in:
Jean-Marc Lasgouttes 2013-04-27 20:14:43 +02:00
parent f5ad0c128a
commit d243e53f54

View File

@ -74,7 +74,7 @@ void MathData::insert(size_type pos, MathAtom const & t)
void MathData::insert(size_type pos, MathData const & ar)
{
LBUFERR(pos < size(), _("Invalid MathData."));
LBUFERR(pos <= size(), _("Invalid MathData."));
base_type::insert(begin() + pos, ar.begin(), ar.end());
}