]> granicus.if.org Git - graphviz/commitdiff
remove unused 'updatePM'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 26 Apr 2022 14:47:32 +0000 (07:47 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 1 May 2022 23:18:02 +0000 (16:18 -0700)
The last use of this was removed in 4d12d3f0826198aad637a5ee4d9c1eff21952019.

lib/common/pointset.c
lib/common/pointset.h

index c5f42300b79f4a3c911741a62a952331596208bc..f7cafb21c7684c7b1279700181789c614cf7056a 100644 (file)
@@ -205,21 +205,6 @@ void freePM(PointMap * ps)
     free(dp);
 }
 
-int updatePM(PointMap * pm, int x, int y, int v)
-{
-    mpair *p;
-    mpair dummy;
-    int old;
-
-    dummy.id.x = x;
-    dummy.id.y = y;
-    dummy.v = v;
-    p = dtinsert(pm, &dummy);
-    old = p->v;
-    p->v = v;
-    return old;
-}
-
 int insertPM(PointMap * pm, int x, int y, int v)
 {
     mpair *p;
index db601454af9a7a0d2543518b27cee2ef43f75d7e..64408d5d872f1f20821be7b9dd57ca982ab0446e 100644 (file)
@@ -45,7 +45,6 @@ extern "C" {
     POINTSET_API void clearPM(PointMap *);
     POINTSET_API void freePM(PointMap *);
     POINTSET_API int insertPM(PointMap *, int, int, int);
-    POINTSET_API int updatePM(PointMap * pm, int x, int y, int v);
 
 #undef POINTSET_API
 #ifdef __cplusplus