From 048494c1e236c4db9d18952de83d2602c1abc7c3 Mon Sep 17 00:00:00 2001 From: mtklein Date: Tue, 16 Feb 2016 19:06:15 -0800 Subject: clean up more dead code - SkSHA1 is unused - SkRunnable is obsolete now that we have std::function BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1705583003 Review URL: https://codereview.chromium.org/1705583003 --- tests/PathOpsThreadedCommon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/PathOpsThreadedCommon.cpp') diff --git a/tests/PathOpsThreadedCommon.cpp b/tests/PathOpsThreadedCommon.cpp index c9a06f0a52..a1a65b70a9 100644 --- a/tests/PathOpsThreadedCommon.cpp +++ b/tests/PathOpsThreadedCommon.cpp @@ -17,6 +17,6 @@ PathOpsThreadedTestRunner::~PathOpsThreadedTestRunner() { void PathOpsThreadedTestRunner::render() { SkTaskGroup().batch(fRunnables.count(), [&](int i) { - fRunnables[i]->run(); + (*fRunnables[i])(); }); } -- cgit v1.2.3