From: Sandro Santilli Date: Wed, 22 Apr 2015 15:25:23 +0000 (+0000) Subject: Do not leak symbols outside of header guard block X-Git-Tag: 2.2.0rc1~556 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b86ef8799a3ad13a5494bfba19f2f21179dcdda5;p=postgis Do not leak symbols outside of header guard block git-svn-id: http://svn.osgeo.org/postgis/trunk@13432 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/liblwgeom/liblwgeom_internal.h b/liblwgeom/liblwgeom_internal.h index fff65278c..f97f4ccee 100644 --- a/liblwgeom/liblwgeom_internal.h +++ b/liblwgeom/liblwgeom_internal.h @@ -434,9 +434,9 @@ extern int _lwgeom_interrupt_requested; } \ } -#endif /* _LIBLWGEOM_INTERNAL_H */ - int ptarray_npoints_in_rect(const POINTARRAY *pa, const GBOX *gbox); int gbox_contains_point2d(const GBOX *g, const POINT2D *p); int lwgeom_npoints_in_rect(const LWGEOM *geom, const GBOX *gbox); int lwpoly_contains_point(const LWPOLY *poly, const POINT2D *pt); + +#endif /* _LIBLWGEOM_INTERNAL_H */