mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-12 18:50:08 +00:00
Bug 1373525 - mfbt: Use unused GetPrev() member function in DoublyLinkedList test. r=froydnj
mfbt/tests/TestDoublyLinkedList.cpp:138:24 [-Wunused-member-function] unused member function 'GetPrev' MozReview-Commit-ID: HQuTw0vXRKV --HG-- extra : source : 0db3bd8a40d67a81b2f224dc9e63012cb832d0b9 extra : intermediate-source : 948c43ff15b4ca1a3db335544494562ec28e67cc
This commit is contained in:
parent
7dad410229
commit
0a377e9314
@ -157,11 +157,16 @@ TestCustomAccessor()
|
||||
|
||||
listTwo.pushBack(&one);
|
||||
listTwo.pushBack(&two);
|
||||
{ unsigned int check[] { 1, 2 }; CheckListValues(listOne, check); }
|
||||
{ unsigned int check[] { 1, 2 }; CheckListValues(listTwo, check); }
|
||||
|
||||
(void)listTwo.popBack();
|
||||
{ unsigned int check[] { 1, 2 }; CheckListValues(listOne, check); }
|
||||
{ unsigned int check[] { 1 }; CheckListValues(listTwo, check); }
|
||||
|
||||
(void)listOne.popBack();
|
||||
{ unsigned int check[] { 1 }; CheckListValues(listOne, check); }
|
||||
{ unsigned int check[] { 1 }; CheckListValues(listTwo, check); }
|
||||
}
|
||||
|
||||
int
|
||||
|
Loading…
x
Reference in New Issue
Block a user