aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkTTopoSort.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/SkTTopoSort.h')
-rw-r--r--src/core/SkTTopoSort.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/SkTTopoSort.h b/src/core/SkTTopoSort.h
index 722707d5b5..01dee53327 100644
--- a/src/core/SkTTopoSort.h
+++ b/src/core/SkTTopoSort.h
@@ -102,7 +102,7 @@ bool SkTTopoSort(SkTArray<sk_sp<T>>* graph) {
}
SkASSERT(graph->count() == result.count());
- graph->swap(&result);
+ graph->swap(result);
#ifdef SK_DEBUG
SkTTopoSort_CleanExit<T, Traits>(*graph);