Chromium Code Reviews| Index: src/core/SkPathHeap.cpp |
| =================================================================== |
| --- src/core/SkPathHeap.cpp (revision 7881) |
| +++ src/core/SkPathHeap.cpp (working copy) |
| @@ -54,8 +54,8 @@ |
| int count = fPaths.count(); |
| buffer.writeInt(count); |
| - SkPath** iter = fPaths.begin(); |
| - SkPath** stop = fPaths.end(); |
| + SkPath* const* iter = fPaths.begin(); |
| + SkPath* const* stop = fPaths.end(); |
| while (iter < stop) { |
| buffer.writePath(**iter); |
| iter++; |