| Index: Source/platform/heap/Visitor.h
|
| diff --git a/Source/platform/heap/Visitor.h b/Source/platform/heap/Visitor.h
|
| index 261eef37dcff17edd4a9b2fd06f55c4411a99fa4..68a2bd24f418607ae40c7fc8f66f3a5a05a8cfcf 100644
|
| --- a/Source/platform/heap/Visitor.h
|
| +++ b/Source/platform/heap/Visitor.h
|
| @@ -431,13 +431,13 @@ public:
|
| template<typename T, size_t inlineCapacity>
|
| void trace(const Vector<T, inlineCapacity>& vector)
|
| {
|
| - OffHeapCollectionTraceTrait<Vector<T, inlineCapacity, WTF::DefaultAllocator> >::trace(Derived::fromHelper(this), vector);
|
| + OffHeapCollectionTraceTrait<Vector<T, inlineCapacity, WTF::DefaultAllocator>>::trace(Derived::fromHelper(this), vector);
|
| }
|
|
|
| template<typename T, size_t N>
|
| void trace(const Deque<T, N>& deque)
|
| {
|
| - OffHeapCollectionTraceTrait<Deque<T, N> >::trace(Derived::fromHelper(this), deque);
|
| + OffHeapCollectionTraceTrait<Deque<T, N>>::trace(Derived::fromHelper(this), deque);
|
| }
|
|
|
| #if !ENABLE(OILPAN)
|
| @@ -670,7 +670,7 @@ private:
|
| // can have vectors of general objects (not just pointers to objects) that can
|
| // be traced.
|
| template<typename T, size_t N>
|
| -struct OffHeapCollectionTraceTrait<WTF::Vector<T, N, WTF::DefaultAllocator> > {
|
| +struct OffHeapCollectionTraceTrait<WTF::Vector<T, N, WTF::DefaultAllocator>> {
|
| typedef WTF::Vector<T, N, WTF::DefaultAllocator> Vector;
|
|
|
| template<typename VisitorDispatcher>
|
| @@ -684,7 +684,7 @@ struct OffHeapCollectionTraceTrait<WTF::Vector<T, N, WTF::DefaultAllocator> > {
|
| };
|
|
|
| template<typename T, size_t N>
|
| -struct OffHeapCollectionTraceTrait<WTF::Deque<T, N> > {
|
| +struct OffHeapCollectionTraceTrait<WTF::Deque<T, N>> {
|
| typedef WTF::Deque<T, N> Deque;
|
|
|
| template<typename VisitorDispatcher>
|
| @@ -697,7 +697,7 @@ struct OffHeapCollectionTraceTrait<WTF::Deque<T, N> > {
|
| }
|
| };
|
|
|
| -template<typename T, typename Traits = WTF::VectorTraits<T> >
|
| +template<typename T, typename Traits = WTF::VectorTraits<T>>
|
| class HeapVectorBacking;
|
|
|
| template<typename Table>
|
|
|