Index: src/core/SkScan_Hairline.cpp |
diff --git a/src/core/SkScan_Hairline.cpp b/src/core/SkScan_Hairline.cpp |
index 2b2194b0d3d7bf19b911ff6132f1a81a613ffe90..9b21c421edf6c8d8dc57f3df7afa63c953085c69 100644 |
--- a/src/core/SkScan_Hairline.cpp |
+++ b/src/core/SkScan_Hairline.cpp |
@@ -326,7 +326,7 @@ static SkRect compute_nocheck_cubic_bounds(const SkPoint pts[4]) { |
min = Sk2s::Min(min, pair); |
max = Sk2s::Max(max, pair); |
} |
- return { min.kth<0>(), min.kth<1>(), max.kth<0>(), max.kth<1>() }; |
+ return { min[0], min[1], max[0], max[1] }; |
} |
static bool is_inverted(const SkRect& r) { |