]> granicus.if.org Git - postgis/commitdiff
Pull gserialized_from_lwgeom_size() back to internal API
authorPaul Ramsey <pramsey@cleverelephant.ca>
Tue, 11 Jun 2019 18:31:23 +0000 (18:31 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Tue, 11 Jun 2019 18:31:23 +0000 (18:31 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@17499 b70326c6-7e19-0410-871a-916f4a2858ee

liblwgeom/liblwgeom.h.in
liblwgeom/liblwgeom_internal.h

index b4e3cd1ec11215f76e87a1e0c7243e79494a1a6d..90a8b0ed8279eefccd918208525785c9813dc7d1 100644 (file)
@@ -1947,13 +1947,6 @@ extern uint64_t gbox_get_sortable_hash(const GBOX *g);
 */
 extern int geometry_type_from_string(const char *str, uint8_t *type, int *z, int *m);
 
-/**
-* Calculate required memory segment to contain a serialized form of the LWGEOM.
-* Primarily used internally by the serialization code. Exposed to allow the cunit
-* tests to exercise it.
-*/
-extern size_t gserialized_from_lwgeom_size(const LWGEOM *geom);
-
 /**
 * Allocate a new #GSERIALIZED from an #LWGEOM. For all non-point types, a bounding
 * box will be calculated and embedded in the serialization. The geodetic flag is used
index ad21114d9a22c9eeb701feb08ddaf7ef7729948e..54927bb617b41e073f7f2c2934cca671a0382c93 100644 (file)
@@ -268,6 +268,13 @@ int gserialized_read_gbox_p(const GSERIALIZED *g, GBOX *gbox);
  */
 int gserialized_peek_gbox_p(const GSERIALIZED *g, GBOX *gbox);
 
+/**
+* Calculate required memory segment to contain a serialized form of the LWGEOM.
+* Primarily used internally by the serialization code. Exposed to allow the cunit
+* tests to exercise it.
+*/
+size_t gserialized_from_lwgeom_size(const LWGEOM *geom);
+
 /*
 * Length calculations
 */