| Index: third_party/WebKit/Source/wtf/HashTable.h
|
| diff --git a/third_party/WebKit/Source/wtf/HashTable.h b/third_party/WebKit/Source/wtf/HashTable.h
|
| index 373dbda75bb434f7c78da8374f61bc68e46cc688..aad25e7c29840c7cec0016c97746ae89fe419eee 100644
|
| --- a/third_party/WebKit/Source/wtf/HashTable.h
|
| +++ b/third_party/WebKit/Source/wtf/HashTable.h
|
| @@ -287,7 +287,8 @@ template <typename HashTableType, typename ValueType> struct HashTableAddResult
|
| , m_containerModifications(container->modifications())
|
| #endif
|
| {
|
| - ASSERT_UNUSED(container, container);
|
| + ALLOW_UNUSED_LOCAL(container);
|
| + DCHECK(container);
|
| }
|
|
|
| ValueType* storedValue;
|
|
|