diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2011-09-19 19:27:07 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2011-09-19 19:27:07 +0200 |
commit | 1bc6873583b01469f4981d738f4d0d4132ccfdbf (patch) | |
tree | 3f86236b08b84f5bdc3d6c9c00c91470933aeaf8 /apt-pkg/pkgcachegen.h | |
parent | 472ff00ef2e48383805d281c6364ec27839e3f4d (diff) |
remove old APT_COMPATIBILITY ifdef's
Diffstat (limited to 'apt-pkg/pkgcachegen.h')
-rw-r--r-- | apt-pkg/pkgcachegen.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/apt-pkg/pkgcachegen.h b/apt-pkg/pkgcachegen.h index af9c2bcb0..b381fa9a3 100644 --- a/apt-pkg/pkgcachegen.h +++ b/apt-pkg/pkgcachegen.h @@ -164,18 +164,4 @@ bool pkgMakeStatusCache(pkgSourceList &List,OpProgress &Progress, MMap **OutMap = 0,bool AllowMem = false); bool pkgMakeOnlyStatusCache(OpProgress &Progress,DynamicMMap **OutMap); - -#ifdef APT_COMPATIBILITY -#if APT_COMPATIBILITY != 986 -#warning "Using APT_COMPATIBILITY" -#endif -MMap *pkgMakeStatusCacheMem(pkgSourceList &List,OpProgress &Progress) -{ - MMap *Map = 0; - if (pkgCacheGenerator::MakeStatusCache(List,&Progress,&Map,true) == false) - return 0; - return Map; -} -#endif - #endif |