зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1460624: Switch FIFO buffer to use stl::deque instead of stl::list. r=mattwoodrow
MozReview-Commit-ID: 3oeH9WyRKBp
This commit is contained in:
Родитель
7521c770a6
Коммит
bbc1a8c2c3
|
@ -55,7 +55,7 @@
|
|||
|
||||
#include <algorithm>
|
||||
#include <functional>
|
||||
#include <list>
|
||||
#include <deque>
|
||||
|
||||
using namespace mozilla::layers;
|
||||
using namespace mozilla::gfx;
|
||||
|
@ -207,7 +207,7 @@ private:
|
|||
}
|
||||
}
|
||||
|
||||
std::list<DisplayItemEntry> mMarkers;
|
||||
std::deque<DisplayItemEntry> mMarkers;
|
||||
AutoTArray<nsDisplayItem*, 4> mActiveMarkers;
|
||||
ContainerState* mState;
|
||||
};
|
||||
|
|
Загрузка…
Ссылка в новой задаче