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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTableSection.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/layout/LayoutTableSection.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
index b934938d547adbec21804eb6f07d5d9eba1d1fbd..f19dbb30e10b0f5b2bdd9d724810e09f3b76529d 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
@@ -605,7 +605,7 @@ void LayoutTableSection::updateRowsHeightHavingOnlySpanningCells(
const unsigned rowSpan = cell->rowSpan();
const unsigned rowIndex = cell->rowIndex();
- ASSERT_UNUSED(rowSpan, rowSpan == spanningRowsHeight.rowHeight.size());
+ DCHECK_EQ(rowSpan, spanningRowsHeight.rowHeight.size());
for (unsigned row = 0; row < spanningRowsHeight.rowHeight.size(); row++) {
unsigned actualRow = row + rowIndex;

Powered by Google App Engine
This is Rietveld 408576698