| Index: third_party/WebKit/Source/wtf/ListHashSet.h
|
| diff --git a/third_party/WebKit/Source/wtf/ListHashSet.h b/third_party/WebKit/Source/wtf/ListHashSet.h
|
| index f819061294994fb32f7f8eff11952cecf769e60a..54aded529e3210ef874dacc7ec394872a8d23a41 100644
|
| --- a/third_party/WebKit/Source/wtf/ListHashSet.h
|
| +++ b/third_party/WebKit/Source/wtf/ListHashSet.h
|
| @@ -1026,7 +1026,7 @@ template <typename T, size_t inlineCapacity, typename U, typename V>
|
| template <typename VisitorDispatcher>
|
| void ListHashSet<T, inlineCapacity, U, V>::trace(VisitorDispatcher visitor)
|
| {
|
| - static_assert(HashTraits<T>::weakHandlingFlag == NoWeakHandlingInCollections, "ListHashSet does not support weakness");
|
| + static_assert(HashTraits<T>::weakHandlingFlag == NoWeakHandlingInCollections, "HeapListHashSet does not support weakness, consider using HeapLinkedHashSet instead.");
|
| // This marks all the nodes and their contents live that can be accessed
|
| // through the HashTable. That includes m_head and m_tail so we do not have
|
| // to explicitly trace them here.
|
|
|