Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(241)

Unified Diff: src/gpu/GrRecordReplaceDraw.cpp

Issue 1824983003: SkRecord: infer return type for visit() and mutate(). (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/core/SkRecordPattern.h ('k') | tests/RecordTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/GrRecordReplaceDraw.cpp
diff --git a/src/gpu/GrRecordReplaceDraw.cpp b/src/gpu/GrRecordReplaceDraw.cpp
index 1fe60407895ac8bebe67d3f24687c6ad0c4d4b8a..4d793904f4e59bc2ce36026ff69423ca4c65a4f1 100644
--- a/src/gpu/GrRecordReplaceDraw.cpp
+++ b/src/gpu/GrRecordReplaceDraw.cpp
@@ -99,7 +99,7 @@ public:
return fNumReplaced;
}
- record->visit<void>(fOps[fIndex], *this);
+ record->visit(fOps[fIndex], *this);
}
} else {
@@ -108,7 +108,7 @@ public:
return fNumReplaced;
}
- record->visit<void>(fIndex, *this);
+ record->visit(fIndex, *this);
}
}
« no previous file with comments | « src/core/SkRecordPattern.h ('k') | tests/RecordTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698