Index: Source/wtf/LinkedHashSet.h |
diff --git a/Source/wtf/LinkedHashSet.h b/Source/wtf/LinkedHashSet.h |
index f80301c65cc83841a9f01674a04427446d0e6a83..36e797b5f5cd68ee9bda1d428e7df095bb6ffbfe 100644 |
--- a/Source/wtf/LinkedHashSet.h |
+++ b/Source/wtf/LinkedHashSet.h |
@@ -240,6 +240,8 @@ public: |
void remove(ValuePeekInType); |
void remove(iterator); |
void clear() { m_impl.clear(); } |
+ template<typename Collection> |
+ void removeAll(const Collection& other) { WTF::removeAll(*this, other); } |
void trace(typename Allocator::Visitor* visitor) { m_impl.trace(visitor); } |