| Index: third_party/WebKit/Source/core/html/parser/HTMLEntityParser.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/parser/HTMLEntityParser.cpp b/third_party/WebKit/Source/core/html/parser/HTMLEntityParser.cpp
|
| index da16360215b38a73aa11567e528b89418a66831c..c9c59b570c48147f98865e82359aaf243697f2cf 100644
|
| --- a/third_party/WebKit/Source/core/html/parser/HTMLEntityParser.cpp
|
| +++ b/third_party/WebKit/Source/core/html/parser/HTMLEntityParser.cpp
|
| @@ -135,7 +135,7 @@ static bool consumeNamedEntity(SegmentedString& source,
|
| const LChar* reference = HTMLEntityTable::entityString(*mostRecent);
|
| for (int i = 0; i < length; ++i) {
|
| cc = source.currentChar();
|
| - ASSERT_UNUSED(reference, cc == static_cast<UChar>(*reference++));
|
| + DCHECK_EQ(cc, static_cast<UChar>(*reference++));
|
| consumedCharacters.append(cc);
|
| source.advanceAndASSERT(cc);
|
| ASSERT(!source.isEmpty());
|
|
|