struct local_optyap_data is now part of struct worker_local (generated from the file LOCALS)

This commit is contained in:
Ricardo Rocha
2011-05-09 19:36:51 +01:00
parent 72a83eec62
commit a532b6cff3
31 changed files with 490 additions and 533 deletions

View File

@@ -173,6 +173,8 @@ static Term get_point(char *func){
}
static Term get_linestring(char *func){
CACHE_REGS
Term *c_list;
Term list;
Functor functor;
@@ -203,6 +205,8 @@ static Term get_linestring(char *func){
}
static Term get_polygon(char *func){
CACHE_REGS
uint32 r;
int i;
Functor functor;
@@ -233,6 +237,8 @@ static Term get_polygon(char *func){
}
static Term get_geometry(uint32 type){
CACHE_REGS
switch(type) {
case WKBPOINT:
return get_point("point");