Changeset 161741 in webkit
- Timestamp:
- Jan 10, 2014, 10:02:00 PM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r161740 r161741 1 2014-01-10 Joseph Pecoraro <pecoraro@apple.com> 2 3 Fix TileGrid.o for iOS. Unreviewed build fix. 4 5 Explicitly use namespace std in std::pair. 6 7 * platform/ios/TileGrid.mm: 8 (WebCore::isFartherAway): 9 (WebCore::TileGrid::dropDistantTiles): 10 1 11 2014-01-10 Joseph Pecoraro <pecoraro@apple.com> 2 12 -
trunk/Source/WebCore/platform/ios/TileGrid.mm
r161690 r161741 105 105 106 106 template <typename T> 107 static bool isFartherAway(const pair<double, T>& a, constpair<double, T>& b)107 static bool isFartherAway(const std::pair<double, T>& a, const std::pair<double, T>& b) 108 108 { 109 109 return a.first > b.first; … … 124 124 125 125 IntRect visibleRect = this->visibleRect(); 126 Vector< pair<double, TileIndex>> toRemove;126 Vector<std::pair<double, TileIndex>> toRemove; 127 127 for (auto tile : m_tiles) { 128 128 TileIndex& index = tile.key;
Note:
See TracChangeset
for help on using the changeset viewer.