Skip to content

Commit 07aab98

Browse files
authored
Fix one more use of deprecated path fill type API (flutter#14127)
1 parent 027c961 commit 07aab98

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

testing/assertions_skia.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ std::ostream& operator<<(std::ostream& os, const SkRRect& r) {
9393
}
9494

9595
std::ostream& operator<<(std::ostream& os, const SkPath& r) {
96-
return os << "Valid: " << r.isValid() << ", FillType: " << r.getFillType()
96+
return os << "Valid: " << r.isValid()
97+
<< ", FillType: " << static_cast<int>(r.getFillType())
9798
<< ", Bounds: " << r.getBounds();
9899
}
99100

0 commit comments

Comments
 (0)