зеркало из https://github.com/mozilla/pjs.git
Fix Mac debug build bustage. (Why don't we have a mac debug tinderbox?) b=86947
This commit is contained in:
Родитель
c1ee1f5c36
Коммит
d3dd71447e
|
@ -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|
|
||||
|
|
Загрузка…
Ссылка в новой задаче