]> git.ipfire.org Git - thirdparty/libsolv.git/commitdiff
Remove ununsed inline functions
authorMichael Schroeder <mls@suse.de>
Tue, 8 Oct 2019 12:11:55 +0000 (14:11 +0200)
committerMichael Schroeder <mls@suse.de>
Tue, 8 Oct 2019 12:11:55 +0000 (14:11 +0200)
src/order.c
src/repo_write.c

index c45a9a227c6bc1e48a01c4fd61ec69ddf64f67d9..b8d4b82157aa032cb117ea40f7024a0731210084 100644 (file)
@@ -598,6 +598,7 @@ breakcycle(struct orderdata *od, Id *cycle)
   POOL_DEBUG(SOLV_DEBUG_STATS, "\n");
 }
 
+#if 0
 static inline void
 dump_tes(struct orderdata *od)
 {
@@ -628,6 +629,7 @@ dump_tes(struct orderdata *od)
        }
     }
 }
+#endif
 
 static void
 reachable(struct orderdata *od, Id i)
index d3b8a832ba21938f100606d25e10ef9f1d65fb52..2a03e5802df743a9f8c41b55bfc8610e2372025c 100644 (file)
@@ -186,16 +186,6 @@ write_id(Repodata *data, Id x)
     }
 }
 
-static inline void
-write_id_eof(Repodata *data, Id x, int eof)
-{
-  if (x >= 64)
-    x = (x & 63) | ((x & ~63) << 1);
-  write_id(data, x | (eof ? 0 : 64));
-}
-
-
-
 static inline void
 write_str(Repodata *data, const char *str)
 {