You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hi,
thank you for the heads up. As I understand it your changes has to do with wkt strings allocated and never destroyed: ok, it makes sense.
More broadly speaking, when you propose a code changes on github you should create a new pull request: https://help.github.com/articles/using-pull-requests
Do you feel like trying to create one to resolve this issue?
Thank you for the reply. I will try to create a pull request.
Hongwei Shen
On Fri, Jul 25, 2014 at 3:15 AM, Andrea Cremaschi [email protected]
wrote:
hi,
thank you for the heads up. As I understand it your changes has to do with
wkt strings allocated and never destroyed: ok, it makes sense.
More broadly speaking, when you propose a code changes on github you
should create a new pull request: https://help.github.com/articles/using-pull-requests
Do you feel like trying to create one to resolve this issue?
—
Reply to this email directly or view it on GitHub #7 (comment).
The code should be changed to like this:
-(id)initWithWKB:(const unsigned char *) wkb size:(size_t)wkb_size {
self = [self init];
if (self)
{
GEOSContextHandle_t handle = (GEOSContextHandle_t)self.handle;
}
-(id)initWithWKT:(NSString *) wkt {
self = [self init];
if (self)
{
GEOSContextHandle_t handle = (GEOSContextHandle_t)_handle;
GEOSGeometry *geosGeom = self.geosGeom;
}
-(id)initWithGeosGeometry:(void *)geom {
self = [self init];
if (self)
{
GEOSContextHandle_t handle = (GEOSContextHandle_t)_handle;
}
-(id)initWithCoordinate:(CLLocationCoordinate2D)coordinate {
self = [self init];
if (self) {
}
The text was updated successfully, but these errors were encountered: