Bug 702240 - [CC] Optimize sizeof nsPurpleBuffer::Block, r=mccr8

This commit is contained in:
Olli Pettay 2011-11-14 18:10:06 +02:00
parent 778767509f
commit 588c360a28

View File

@ -748,7 +748,7 @@ struct nsPurpleBuffer
private:
struct Block {
Block *mNext;
nsPurpleBufferEntry mEntries[128];
nsPurpleBufferEntry mEntries[255];
Block() : mNext(nsnull) {}
};