Index: third_party/WebKit/Source/platform/wtf/text/AtomicStringTable.cpp |
diff --git a/third_party/WebKit/Source/platform/wtf/text/AtomicStringTable.cpp b/third_party/WebKit/Source/platform/wtf/text/AtomicStringTable.cpp |
index df7ab02d57d98fa9f0187669367b4404e2f0bf0c..4a53f2c5c33c61cb349aa9291d1aae1d0c070167 100644 |
--- a/third_party/WebKit/Source/platform/wtf/text/AtomicStringTable.cpp |
+++ b/third_party/WebKit/Source/platform/wtf/text/AtomicStringTable.cpp |
@@ -214,7 +214,7 @@ PassRefPtr<StringImpl> AtomicStringTable::AddUTF8(const char* characters_start, |
void AtomicStringTable::Remove(StringImpl* string) { |
DCHECK(string->IsAtomic()); |
auto iterator = table_.Find(string); |
- RELEASE_ASSERT(iterator != table_.end()); |
+ CHECK_NE(iterator, table_.end()); |
table_.erase(iterator); |
} |