diff options
author | Julian Andres Klode <jak@debian.org> | 2016-01-23 15:02:48 +0100 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2016-01-23 15:13:04 +0100 |
commit | 19819ac58a420275e0ae9aa7e2a34c72cba8af5e (patch) | |
tree | 3834146d4cd0084b9bbb87e1fb51237722af3cc8 /apt-pkg/pkgcachegen.h | |
parent | 0c20302f5a02f9961b1a5c63913434ba03dcf3a0 (diff) |
Pass the old map size to ReMap()
This allows us to check if a value to be remapped was inside
the cache or not, which will become useful at a later point.
Gbp-Dch: ignore
Diffstat (limited to 'apt-pkg/pkgcachegen.h')
-rw-r--r-- | apt-pkg/pkgcachegen.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/pkgcachegen.h b/apt-pkg/pkgcachegen.h index d8d1e303a..ea288ad6e 100644 --- a/apt-pkg/pkgcachegen.h +++ b/apt-pkg/pkgcachegen.h @@ -149,7 +149,7 @@ class APT_HIDDEN pkgCacheGenerator /*{{{*/ MMap **OutMap,pkgCache **OutCache, bool AllowMem = false); APT_PUBLIC static bool MakeOnlyStatusCache(OpProgress *Progress,DynamicMMap **OutMap); - void ReMap(void const * const oldMap, void const * const newMap); + void ReMap(void const * const oldMap, void const * const newMap, size_t oldSize); pkgCacheGenerator(DynamicMMap *Map,OpProgress *Progress); virtual ~pkgCacheGenerator(); |