Fix a compiler error on gcc 4.8.4

This commit is contained in:
David Capello 2018-03-13 09:56:39 -03:00
parent 12578321d6
commit f9af5c21c7

View File

@ -396,7 +396,7 @@ void fill_rotated_ellipse(int cx, int cy, int a, int b, double angle, void* data
draw_rotated_ellipse_rect(
cx-a, cy-b, cx+a, cy+b, zd,
&rows,
(AlgoPixel)[](int x, int y, void* data){
[](int x, int y, void* data){
Rows* rows = (Rows*)data;
rows->update(x, y);
});