| Index: third_party/WebKit/Source/platform/text/SegmentedString.cpp
|
| diff --git a/third_party/WebKit/Source/platform/text/SegmentedString.cpp b/third_party/WebKit/Source/platform/text/SegmentedString.cpp
|
| index 197cb169665b1183234c4075e8781f30dd84208b..98131fc14031c8ee8e39dc014d5531ee0ae09977 100644
|
| --- a/third_party/WebKit/Source/platform/text/SegmentedString.cpp
|
| +++ b/third_party/WebKit/Source/platform/text/SegmentedString.cpp
|
| @@ -67,7 +67,7 @@ void SegmentedString::append(const SegmentedSubstring& s) {
|
| m_currentString = s;
|
| updateAdvanceFunctionPointers();
|
| } else {
|
| - m_substrings.append(s);
|
| + m_substrings.push_back(s);
|
| }
|
| m_empty = false;
|
| }
|
|
|