Ticket #31 (closed defect: fixed)
Undeclared 'area' variable used in GEOSLength in geos_c.cpp
| Reported by: | mloskot | Owned by: | mloskot |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | C API | Version: | svn-trunk |
| Severity: | Content | Keywords: | imported,phpbugtracker |
| Cc: | mloskot |
Description (last modified by mloskot) (diff)
I encounter small error/typo:
Error 7 error C2065: 'area' : undeclared identifier d:__projectsgeos_cvsgeoscapigeos_c.cpp 510
Resolution is to change lines:
try {
*area = g->getLength();
return 1;
}
to read:
try {
*lenght = g->getLength();
return 1;
}
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

