]> granicus.if.org Git - postgis/commitdiff
Remove unused function gserialized_copy
authorPaul Ramsey <pramsey@cleverelephant.ca>
Mon, 10 Jun 2019 20:25:59 +0000 (20:25 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Mon, 10 Jun 2019 20:25:59 +0000 (20:25 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@17484 b70326c6-7e19-0410-871a-916f4a2858ee

liblwgeom/g_serialized.c
liblwgeom/liblwgeom.h.in

index 6b9877c11d259775f9b7e99d90f58d4533d2899f..d49157ccf10b37ea0b2939085145def4da874b79 100644 (file)
@@ -138,15 +138,6 @@ inline static int gserialized_cmp_srid(const GSERIALIZED *s1, const GSERIALIZED
        ) ? 0 : 1;
 }
 
-GSERIALIZED* gserialized_copy(const GSERIALIZED *g)
-{
-       GSERIALIZED *g_out = NULL;
-       assert(g);
-       g_out = (GSERIALIZED*)lwalloc(SIZE_GET(g->size));
-       memcpy((uint8_t*)g_out,(uint8_t*)g,SIZE_GET(g->size));
-       return g_out;
-}
-
 static size_t gserialized_is_empty_recurse(const uint8_t *p, int *isempty);
 static size_t gserialized_is_empty_recurse(const uint8_t *p, int *isempty)
 {
index 4ef150e7620bc6e6e82e9e5aedd6d6ba9a7bc585..9cbbdfae57cb58bc558a19561b8638a8f7130b3b 100644 (file)
@@ -1744,11 +1744,6 @@ extern void deparse_hex(uint8_t str, char *result);
 */
 extern char* gserialized_to_string(const GSERIALIZED *g);
 
-/**
-* Return a copy of the input serialized geometry.
-*/
-extern GSERIALIZED* gserialized_copy(const GSERIALIZED *g);
-
 /**
 * Check that coordinates of LWGEOM are all within the geodetic range (-180, -90, 180, 90)
 */