| Index: third_party/WebKit/Source/platform/text/Hyphenation.cpp
|
| diff --git a/third_party/WebKit/Source/platform/text/Hyphenation.cpp b/third_party/WebKit/Source/platform/text/Hyphenation.cpp
|
| index 99431b415c426257778a86e82523ab2117f39788..db36804d2550b31cadefa6ce14bd14cd6b963a54 100644
|
| --- a/third_party/WebKit/Source/platform/text/Hyphenation.cpp
|
| +++ b/third_party/WebKit/Source/platform/text/Hyphenation.cpp
|
| @@ -18,7 +18,7 @@ Vector<size_t, 8> Hyphenation::hyphenLocations(const StringView& text) const {
|
|
|
| while ((hyphenLocation = lastHyphenLocation(text, hyphenLocation)) >=
|
| minimumPrefixLength)
|
| - hyphenLocations.append(hyphenLocation);
|
| + hyphenLocations.push_back(hyphenLocation);
|
|
|
| return hyphenLocations;
|
| }
|
|
|