| Index: Source/core/rendering/InlineTextBox.cpp
|
| diff --git a/Source/core/rendering/InlineTextBox.cpp b/Source/core/rendering/InlineTextBox.cpp
|
| index 51c9e829b700358a4ffe7c5d8dee362b4232a8fa..6a29e8f2e0d1656495f04fb86c27556104e072f3 100644
|
| --- a/Source/core/rendering/InlineTextBox.cpp
|
| +++ b/Source/core/rendering/InlineTextBox.cpp
|
| @@ -47,7 +47,7 @@ struct SameSizeAsInlineTextBox : public InlineBox {
|
| void* pointers[2];
|
| };
|
|
|
| -COMPILE_ASSERT(sizeof(InlineTextBox) == sizeof(SameSizeAsInlineTextBox), InlineTextBox_should_stay_small);
|
| +static_assert(sizeof(InlineTextBox) == sizeof(SameSizeAsInlineTextBox), "InlineTextBox should stay small");
|
|
|
| typedef WTF::HashMap<const InlineTextBox*, LayoutRect> InlineTextBoxOverflowMap;
|
| static InlineTextBoxOverflowMap* gTextBoxesWithOverflow;
|
|
|