summaryrefslogtreecommitdiff
path: root/apt-pkg/pkgcache.h
diff options
context:
space:
mode:
authorJulian Andres Klode <julian.klode@canonical.com>2025-02-15 09:40:15 +0100
committerJulian Andres Klode <julian.klode@canonical.com>2025-02-15 09:40:15 +0100
commit6e877571bc2dd50e38f2f35675c401d74dbe233d (patch)
tree3687286269bda4e8c86bf779d4cc67ae98a70d68 /apt-pkg/pkgcache.h
parentda4f6c5b71eee9eee67225d2c4b396d47f44620d (diff)
Run unifdef -DAPT_PKG_ABI=700 again
main picked up a couple new ifdefs since the branch started; so clean them up again.
Diffstat (limited to 'apt-pkg/pkgcache.h')
-rw-r--r--apt-pkg/pkgcache.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/apt-pkg/pkgcache.h b/apt-pkg/pkgcache.h
index ed445b5bc..22eea3f6c 100644
--- a/apt-pkg/pkgcache.h
+++ b/apt-pkg/pkgcache.h
@@ -340,13 +340,8 @@ struct pkgCache::Header
map_id_t DependsDataCount;
map_fileid_t ReleaseFileCount;
map_fileid_t PackageFileCount;
-#if APT_PKG_ABI <= 600
- map_fileid_t VerFileCount;
- map_fileid_t DescFileCount;
-#else
map_id_t VerFileCount;
map_id_t DescFileCount;
-#endif
map_id_t ProvidesCount;
/** \brief index of the first PackageFile structure
@@ -603,9 +598,6 @@ struct pkgCache::VerFile
map_pointer<VerFile> NextFile;
/** \brief position in the package file */
map_filesize_t Offset; // File offset
-#if APT_PKG_ABI <= 600
- [[deprecated("No usage in src:apt, try MaxVerFileSize instead")]] map_filesize_t Size;
-#endif
};
/*}}}*/
// DescFile structure /*{{{*/
@@ -618,9 +610,6 @@ struct pkgCache::DescFile
map_pointer<DescFile> NextFile;
/** \brief position in the file */
map_filesize_t Offset; // File offset
-#if APT_PKG_ABI <= 600
- [[deprecated("No usage in src:apt, try MaxDescFileSize instead")]] map_filesize_t Size;
-#endif
};
/*}}}*/
// Version structure /*{{{*/