Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(147)

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSParserToken.cpp

Issue 2394683005: Remove ASSERT_UNUSED (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/css/parser/CSSParserToken.cpp
diff --git a/third_party/WebKit/Source/core/css/parser/CSSParserToken.cpp b/third_party/WebKit/Source/core/css/parser/CSSParserToken.cpp
index 36b28b87c34ce585ee5afe5f53c2955493659f0a..ab202afea7411fb658bfe36acd5985b8e22dd42c 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSParserToken.cpp
+++ b/third_party/WebKit/Source/core/css/parser/CSSParserToken.cpp
@@ -49,7 +49,7 @@ CSSParserToken::CSSParserToken(CSSParserTokenType type,
UChar32 start,
UChar32 end)
: m_type(UnicodeRangeToken), m_blockType(NotBlock) {
- ASSERT_UNUSED(type, type == UnicodeRangeToken);
+ DCHECK_EQ(type, UnicodeRangeToken);
m_unicodeRange.start = start;
m_unicodeRange.end = end;
}

Powered by Google App Engine
This is Rietveld 408576698