]> git.sur5r.net Git - cc65/commitdiff
Remove an unused function
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 11 Oct 2001 22:02:00 +0000 (22:02 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 11 Oct 2001 22:02:00 +0000 (22:02 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1042 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/casenode.h

index 19861ce968392c35d4173f5de8f220c72ea27bf9..785c005528014b837ff1bb6c0c2ee203d174916f 100644 (file)
@@ -70,16 +70,6 @@ CaseNode* NewCaseNode (unsigned char Value);
 void FreeCaseNode (CaseNode* N);
 /* Delete a case node plus all sub nodes */
 
-#if defined(HAVE_INLINE)
-INLINE unsigned CN_GetSubNodeCount (const CaseNode* N)
-/* Return the number of subnodes in N */
-{
-    return N->Nodes? CollCount (N->Nodes) : 0;
-}
-#else
-#  define CN_GetSubNodeCount(N) ((N)->Nodes? CollCount (&(N)->Nodes) : 0)
-#endif
-
 #if defined(HAVE_INLINE)
 INLINE CaseNode* CN_GetSubNode (CaseNode* N, unsigned Index)
 /* Get a sub node of the given node */