avoid compiler warning

This commit is contained in:
Dane Springmeyer 2012-06-23 22:10:12 -04:00
parent 39bae3825e
commit 631b3637dc

View file

@ -49,6 +49,7 @@ int get_pixel(mapnik::grid const& grid, int x, int y)
}
PyErr_SetString(PyExc_IndexError, "invalid x,y for grid dimensions");
boost::python::throw_error_already_set();
return 0;
}
void export_grid()