Index: Source/platform/heap/Heap.h |
diff --git a/Source/platform/heap/Heap.h b/Source/platform/heap/Heap.h |
index 0c6c65f8c0f6032346fe644842c5c1c79a041b3a..1ddbf13997cb481c55d4e248f51df8a825ba7559 100644 |
--- a/Source/platform/heap/Heap.h |
+++ b/Source/platform/heap/Heap.h |
@@ -2408,20 +2408,6 @@ struct GCInfoTrait<HeapDeque<T, inlineCapacity> > : public GCInfoTrait<Deque<T, |
template<typename T, typename U, typename V> |
struct GCInfoTrait<HeapHashCountedSet<T, U, V> > : public GCInfoTrait<HashCountedSet<T, U, V, HeapAllocator> > { }; |
-template<typename T> |
-struct IfWeakMember; |
- |
-template<typename T> |
-struct IfWeakMember { |
- template<typename U> |
- static bool isDead(Visitor*, const U&) { return false; } |
-}; |
- |
-template<typename T> |
-struct IfWeakMember<WeakMember<T> > { |
- static bool isDead(Visitor* visitor, const WeakMember<T>& t) { return !visitor->isAlive(t.get()); } |
-}; |
- |
} // namespace blink |
#endif // Heap_h |