| 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 baae67a67e1add2ff80ab2d4d35a5e2e8975557f..a8f3d7752261439945f7837105e2a34c4ed9fcd0 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| @@ -80,8 +80,8 @@ row, const LayoutTableCell* cell)
|
|
|
| void CellSpan::ensureConsistency(const unsigned maximumSpanSize)
|
| {
|
| - static_assert(WTF::IsSameType<decltype(m_start), unsigned>::value, "Asserts below assume m_start is unsigned");
|
| - static_assert(WTF::IsSameType<decltype(m_end), unsigned>::value, "Asserts below assume m_end is unsigned");
|
| + static_assert(std::is_same<decltype(m_start), unsigned>::value, "Asserts below assume m_start is unsigned");
|
| + static_assert(std::is_same<decltype(m_end), unsigned>::value, "Asserts below assume m_end is unsigned");
|
| RELEASE_ASSERT(m_start <= maximumSpanSize);
|
| RELEASE_ASSERT(m_end <= maximumSpanSize);
|
| RELEASE_ASSERT(m_start <= m_end);
|
|
|