]> git.ipfire.org Git - thirdparty/libsolv.git/commitdiff
ABI compat: move whatprovidesaux to private part of pool
authorMichael Schroeder <mls@suse.de>
Mon, 1 Jun 2015 12:29:03 +0000 (14:29 +0200)
committerMichael Schroeder <mls@suse.de>
Mon, 1 Jun 2015 12:29:03 +0000 (14:29 +0200)
src/pool.h

index 42246af253da5fa19865d80bd2b3698373e50dfb..6b98efc9ce4ac6291cb8ca199d08b7f863c78e22 100644 (file)
@@ -99,11 +99,6 @@ struct _Pool {
   Offset whatprovidesdataoff;  /* next free slot within whatprovidesdata */
   int whatprovidesdataleft;    /* number of 'free slots' within whatprovidesdata */
 
-  Offset *whatprovidesaux;
-  Offset whatprovidesauxoff;
-  Id *whatprovidesauxdata;
-  Offset whatprovidesauxdataoff;
-
   /* If nonzero, then consider only the solvables with Ids set in this
      bitmap for solving.  If zero, consider all solvables.  */
   Map *considered;
@@ -161,6 +156,11 @@ struct _Pool {
   int addedfileprovides;       /* true: application called addfileprovides */
   Queue lazywhatprovidesq;     /* queue to store old whatprovides offsets */
   int nowhatprovidesaux;       /* don't allocate and use the whatprovides aux helper */
+  Offset *whatprovidesaux;
+  Offset whatprovidesauxoff;
+  Id *whatprovidesauxdata;
+  Offset whatprovidesauxdataoff;
+
 #endif
 };