From: Paul Ramsey Date: Sun, 20 Dec 2009 17:23:48 +0000 (+0000) Subject: Disable unused static function. X-Git-Tag: 1.5.0b1~63 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=900e7700fda793b915af9037724689063194f17f;p=postgis Disable unused static function. git-svn-id: http://svn.osgeo.org/postgis/trunk@5038 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/postgis/lwgeom_in_kml.c b/postgis/lwgeom_in_kml.c index 06452e192..c0d9e4d94 100644 --- a/postgis/lwgeom_in_kml.c +++ b/postgis/lwgeom_in_kml.c @@ -148,6 +148,8 @@ static bool is_kml_namespace(xmlNodePtr xnode, bool is_strict) } +/* Temporarily disabling unused function. */ +#if 0 /** * Retrieve a KML propertie from a node or NULL otherwise * Respect namespaces if presents in the node element @@ -166,6 +168,7 @@ static xmlChar *kmlGetProp(xmlNodePtr xnode, xmlChar *prop) return value; } +#endif /**