Fix coordinate overflow by increasing integer size

This commit is contained in:
Eric Fischer 2016-12-09 16:35:41 -08:00
parent 5dc773ffae
commit 57ff54e683

View File

@ -8,8 +8,8 @@ enum mvt_operation {
}; };
struct mvt_geometry { struct mvt_geometry {
int x; long long x;
int y; long long y;
int /* mvt_operation */ op; int /* mvt_operation */ op;
mvt_geometry(int op, long long x, long long y); mvt_geometry(int op, long long x, long long y);