| Index: third_party/WebKit/Source/platform/heap/HeapAllocator.h
|
| diff --git a/third_party/WebKit/Source/platform/heap/HeapAllocator.h b/third_party/WebKit/Source/platform/heap/HeapAllocator.h
|
| index 80da0168318dc33bac5583609e274a78abe27ce6..d62e793349d48398a034a67a97c2cabbe1ff0e19 100644
|
| --- a/third_party/WebKit/Source/platform/heap/HeapAllocator.h
|
| +++ b/third_party/WebKit/Source/platform/heap/HeapAllocator.h
|
| @@ -373,11 +373,10 @@ class HeapLinkedHashSet
|
| "instead of HeapLinkedHashSet<>");
|
| };
|
|
|
| -template <
|
| - typename ValueArg,
|
| - size_t inlineCapacity =
|
| - 0, // The inlineCapacity is just a dummy to match ListHashSet (off-heap).
|
| - typename HashArg = typename DefaultHash<ValueArg>::Hash>
|
| +template <typename ValueArg,
|
| + size_t inlineCapacity = 0, // The inlineCapacity is just a dummy to
|
| + // match ListHashSet (off-heap).
|
| + typename HashArg = typename DefaultHash<ValueArg>::Hash>
|
| class HeapListHashSet
|
| : public ListHashSet<ValueArg,
|
| inlineCapacity,
|
|
|