Fix Mac debug build bustage. (Why don't we have a mac debug tinderbox?) b=86947

This commit is contained in:
dbaron%fas.harvard.edu 2001-10-25 20:19:32 +00:00
Родитель c1ee1f5c36
Коммит d3dd71447e
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1253,7 +1253,7 @@ class nsLineList {
void splice(iterator position, self_type& x, iterator i)
{
NS_ASSERTION(!x.empty(), "Can't insert from empty list.");
NS_ASSERTION(position != i && position != i->_mNext,
NS_ASSERTION(position != i && position.mCurrent != i->_mNext,
"We don't check for this case.");
// remove from |x|

Просмотреть файл

@ -1253,7 +1253,7 @@ class nsLineList {
void splice(iterator position, self_type& x, iterator i)
{
NS_ASSERTION(!x.empty(), "Can't insert from empty list.");
NS_ASSERTION(position != i && position != i->_mNext,
NS_ASSERTION(position != i && position.mCurrent != i->_mNext,
"We don't check for this case.");
// remove from |x|