]> git.sur5r.net Git - cc65/commitdiff
Removed an unused function.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 11 Aug 2011 21:23:37 +0000 (21:23 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 11 Aug 2011 21:23:37 +0000 (21:23 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5153 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ca65/lineinfo.c
src/ca65/lineinfo.h

index 355fdfc75206448882917dd6e7f29c4b75318877..d1faa21a26133ceee40b9957ed2e0d5a94f8e8c5 100644 (file)
@@ -121,7 +121,7 @@ void InitLineInfo (void)
     AllocatedSlots = 8;
     CurLineInfo = xmalloc (AllocatedSlots * sizeof (LineInfoSlot));
 
-    /* Initalize the predefined slots. Be sure to ccreate a new LineInfo for
+    /* Initalize the predefined slots. Be sure to create a new LineInfo for
      * the default source. This is necessary to allow error message to be
      * generated without any input file open.
      */
@@ -226,19 +226,6 @@ void GetFullLineInfo (Collection* LineInfos, unsigned IncUsage)
 
 
 
-LineInfo* UseLineInfo (LineInfo* LI)
-/* Increase the reference count of the given line info and return it. The
- * function will gracefully accept NULL pointers and do nothing in this case.
- */
-{
-    if (LI) {
-               ++LI->Usage;
-    }
-    return LI;
-}
-
-
-
 LineInfo* ReleaseLineInfo (LineInfo* LI)
 /* Decrease the reference count of the given line info and return it. The
  * function will gracefully accept NULL pointers and do nothing in this case.
index 801a869943a08896afc61e5c4048517dd0607e4d..14ca35f811d9b816bccb6fc806f33a32cbcb7205 100644 (file)
@@ -103,11 +103,6 @@ void GetFullLineInfo (Collection* LineInfos, unsigned IncUsage);
  * counter by IncUsage for all line infos returned.
  */
 
-LineInfo* UseLineInfo (LineInfo* LI);
-/* Increase the reference count of the given line info and return it. The
- * function will gracefully accept NULL pointers and do nothing in this case.
- */
-
 LineInfo* ReleaseLineInfo (LineInfo* LI);
 /* Decrease the reference count of the given line info and return it. The
  * function will gracefully accept NULL pointers and do nothing in this case.
@@ -151,4 +146,4 @@ void WriteLineInfos (void);
 
 
 
-                        
+