| Index: third_party/WebKit/WebCore/css/CSSStyleSelector.cpp
|
| ===================================================================
|
| --- third_party/WebKit/WebCore/css/CSSStyleSelector.cpp (revision 9118)
|
| +++ third_party/WebKit/WebCore/css/CSSStyleSelector.cpp (working copy)
|
| @@ -754,7 +754,7 @@
|
| // We have to merge sort. Ensure our merge buffer is big enough to hold
|
| // all the items.
|
| Vector<CSSRuleData*> rulesMergeBuffer;
|
| - rulesMergeBuffer.reserveCapacity(end - start);
|
| + rulesMergeBuffer.reserveInitialCapacity(end - start);
|
|
|
| unsigned i1 = start;
|
| unsigned i2 = mid;
|
|
|