| 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 6fb6a84f70109352033db6532ea9af73bd3d2a83..9bf28babb5c2edb9d3fbf33f509ec1dea976acb5 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| @@ -1845,7 +1845,7 @@ LayoutTableSection* LayoutTableSection::createAnonymousWithParent(
|
| EDisplay::TableRowGroup);
|
| LayoutTableSection* newSection = new LayoutTableSection(nullptr);
|
| newSection->setDocumentForAnonymous(&parent->document());
|
| - newSection->setStyle(newStyle.release());
|
| + newSection->setStyle(std::move(newStyle));
|
| return newSection;
|
| }
|
|
|
|
|