Skip to content

Commit 01e81ef

Browse files
chinmaygardednfield
authored andcommitted
Fix Mac compilation issue. (flutter#147)
1 parent f86c9b7 commit 01e81ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

impeller/geometry/rect.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ struct TRect {
147147
constexpr std::array<TPoint<T>, 4> GetTransformedPoints(
148148
const Matrix& transform) const {
149149
auto points = GetPoints();
150-
for (int i = 0; i < points.size(); i++) {
150+
for (size_t i = 0; i < points.size(); i++) {
151151
points[i] = transform * points[i];
152152
}
153153
return points;

0 commit comments

Comments
 (0)