No bug: Fix whitespace in mozilla/LinkedList.h. DONTBUILD

This commit is contained in:
Justin Lebar 2013-08-22 14:39:34 -07:00
parent cd427c7527
commit 7c8f8f47d4

View File

@ -148,8 +148,8 @@ class LinkedListElement
* linked list when you call setNext(); otherwise, this method will assert.
*/
void setNext(T* elem) {
MOZ_ASSERT(isInList());
setNextUnsafe(elem);
MOZ_ASSERT(isInList());
setNextUnsafe(elem);
}
/*