Changeset 197298 in webkit
- Timestamp:
- Feb 28, 2016, 12:12:06 PM (9 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r197263 r197298 1 2016-02-28 Konstantin Tokarev <annulen@yandex.ru> 2 3 SVGToOTFFontConversion.cpp does not compile with libstdc++ 4.8 4 https://bugs.webkit.org/show_bug.cgi?id=154794 5 6 Reviewed by Michael Catanzaro. 7 8 No new tests needed. 9 10 * svg/SVGToOTFFontConversion.cpp: 11 (WebCore::SVGToOTFFontConverter::appendLigatureSubtable): Added const 12 qualifiers. 13 1 14 2016-02-27 Chris Dumez <cdumez@apple.com> 2 15 -
trunk/Source/WebCore/svg/SVGToOTFFontConversion.cpp
r196559 r197298 754 754 if (ligaturePairs.size() > std::numeric_limits<uint16_t>::max()) 755 755 ligaturePairs.clear(); 756 std::sort(ligaturePairs.begin(), ligaturePairs.end(), []( LigaturePair& lhs,LigaturePair& rhs) {756 std::sort(ligaturePairs.begin(), ligaturePairs.end(), [](const LigaturePair& lhs, const LigaturePair& rhs) { 757 757 return lhs.first[0] < rhs.first[0]; 758 758 });
Note:
See TracChangeset
for help on using the changeset viewer.