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 4a9a6ab53f32f8d970a1e652926aed52a11be30d..95c4cc839edeb016880122d33bbdf74ddf77e040 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); |