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 {
int x;
int y;
long long x;
long long y;
int /* mvt_operation */ op;
mvt_geometry(int op, long long x, long long y);