aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/RecorderTest.cpp
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2016-03-22 11:46:53 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-03-22 11:46:53 -0700
commit343a63d082bda969d7e8a4e09ba850e931185269 (patch)
treeaa2a1e863307c6dd6d4499a7a09fb40115b189d8 /tests/RecorderTest.cpp
parentd33fe1f1f91a44458ee1a35a83788df74df16c07 (diff)
SkRecord: infer return type for visit() and mutate().
Diffstat (limited to 'tests/RecorderTest.cpp')
-rw-r--r--tests/RecorderTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/RecorderTest.cpp b/tests/RecorderTest.cpp
index b1af1388fb..59d5a8e6cd 100644
--- a/tests/RecorderTest.cpp
+++ b/tests/RecorderTest.cpp
@@ -31,7 +31,7 @@ public:
void apply(const SkRecord& record) {
for (int i = 0; i < record.count(); i++) {
- record.visit<void>(i, *this);
+ record.visit(i, *this);
}
}