]> granicus.if.org Git - graphviz/commitdiff
remove KPVDEL guards
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 7 Jul 2021 01:37:22 +0000 (18:37 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 10 Jul 2021 00:12:24 +0000 (17:12 -0700)
I believe these were used by Kiem-Phong Vo to remind themselves to expose these
definitions unconditionally in future. However, it seems they were never
followed up on. We remove them now to ease ongoing maintenance.

lib/cdt/cdt.h
lib/cdt/dthash.c
lib/cdt/dtlist.c
lib/cdt/dttree.c

index ed16a304c767e7b0c38cda35986167b92d9f015f..d32eb7a99791cd11389700b6f6c7696d563b3d1f 100644 (file)
@@ -170,8 +170,6 @@ CDT_API extern Dtmethod_t*  Dtstack;
 CDT_API extern Dtmethod_t*     Dtqueue;
 CDT_API extern Dtmethod_t*     Dtdeque;
 
-/* compatibility stuff; will go away */
-#ifndef KPVDEL
 CDT_API extern Dtmethod_t*     Dtorder;
 CDT_API extern Dtmethod_t*     Dttree;
 CDT_API extern Dtmethod_t*     Dthash;
@@ -180,7 +178,6 @@ CDT_API extern Dtmethod_t   _Dthash;
 CDT_API extern Dtmethod_t      _Dtlist;
 CDT_API extern Dtmethod_t      _Dtqueue;
 CDT_API extern Dtmethod_t      _Dtstack;
-#endif
 
 CDT_API Dt_t*          dtopen(Dtdisc_t*, Dtmethod_t*);
 CDT_API int            dtclose(Dt_t*);
index aee47d835b67e2d5e19005360a3f91429e6d6f01..ef8602565249d07c2025741627d63d7df560b4b3 100644 (file)
@@ -326,7 +326,5 @@ static Dtmethod_t   _Dtbag = { dthash, DT_BAG };
 Dtmethod_t* Dtset = &_Dtset;
 Dtmethod_t* Dtbag = &_Dtbag;
 
-#ifndef KPVDEL /* for backward compatibility - remove next time */
 Dtmethod_t             _Dthash = { dthash, DT_SET };
 Dtmethod_t* Dthash = &_Dthash;
-#endif
index f04ce1cfa2e3e02fe51dffb3b63fedd799a38cd3..eb0a23b2b9bc686633bffc12d8e0d95785af91e7 100644 (file)
@@ -168,13 +168,10 @@ static void* dtlist(Dt_t* dt, void* obj, int type)
        return r ? _DTOBJ(r,lk) : NULL;
 }
 
-#ifndef KPVDEL /* to be remove next round */
-#define static 
-#endif
-static Dtmethod_t _Dtlist  = { dtlist, DT_LIST  };
-static Dtmethod_t _Dtdeque  = { dtlist, DT_DEQUE  };
-static Dtmethod_t _Dtstack = { dtlist, DT_STACK };
-static Dtmethod_t _Dtqueue = { dtlist, DT_QUEUE };
+Dtmethod_t _Dtlist  = { dtlist, DT_LIST  };
+Dtmethod_t _Dtdeque  = { dtlist, DT_DEQUE  };
+Dtmethod_t _Dtstack = { dtlist, DT_STACK };
+Dtmethod_t _Dtqueue = { dtlist, DT_QUEUE };
 
 Dtmethod_t* Dtlist = &_Dtlist;
 Dtmethod_t* Dtdeque = &_Dtdeque;
index c76f88fb9769af8b833944891e82ce111c58a0bb..645aa67869c01eb0fe020341310ae6afb17b2b35 100644 (file)
@@ -353,8 +353,6 @@ static Dtmethod_t   _Dtobag =  { dttree, DT_OBAG };
 Dtmethod_t* Dtoset = &_Dtoset;
 Dtmethod_t* Dtobag = &_Dtobag;
 
-#ifndef KPVDEL /* backward compatibility - delete next time around */
 Dtmethod_t             _Dttree = { dttree, DT_OSET };
 Dtmethod_t* Dtorder = &_Dttree;
 Dtmethod_t* Dttree = &_Dttree;
-#endif