| Index: Source/wtf/HashTable.h
|
| diff --git a/Source/wtf/HashTable.h b/Source/wtf/HashTable.h
|
| index d8187587f73b7d964d6c6ff1c3b5a0369a56a11b..ecf9b4843252feb0c10249074cbaaf8a109e1fec 100644
|
| --- a/Source/wtf/HashTable.h
|
| +++ b/Source/wtf/HashTable.h
|
| @@ -288,6 +288,7 @@ namespace WTF {
|
| // Rehash after accessing storedValue is harmless but will assert if
|
| // the AddResult destructor takes place after a modification. You
|
| // may need to limit the scope of the AddResult.
|
| + fprintf(stderr, "%ld %ld\n", m_containerModifications, m_container->modifications());
|
| ASSERT_WITH_SECURITY_IMPLICATION(m_containerModifications == m_container->modifications());
|
| }
|
|
|
| @@ -295,7 +296,6 @@ namespace WTF {
|
| bool isNewEntry;
|
|
|
| #if ENABLE(SECURITY_ASSERT)
|
| - private:
|
| const HashTableType* m_container;
|
| const int64_t m_containerModifications;
|
| #endif
|
|
|