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 f62876de8f
commit 8cad37657e

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);
}
/*