Fix one more use of deprecated path fill type API (flutter/engine#14127)

This commit is contained in:
Brian Osman 2019-12-04 10:59:06 -05:00 committed by GitHub
parent 903d6182ea
commit 1cbaa6ddfb

View File

@ -93,7 +93,8 @@ std::ostream& operator<<(std::ostream& os, const SkRRect& r) {
}
std::ostream& operator<<(std::ostream& os, const SkPath& r) {
return os << "Valid: " << r.isValid() << ", FillType: " << r.getFillType()
return os << "Valid: " << r.isValid()
<< ", FillType: " << static_cast<int>(r.getFillType())
<< ", Bounds: " << r.getBounds();
}