diff options
author | Julian Andres Klode <julian.klode@canonical.com> | 2019-02-26 11:50:15 +0100 |
---|---|---|
committer | Julian Andres Klode <julian.klode@canonical.com> | 2019-02-26 16:31:20 +0100 |
commit | 29a63ffeffbecdb6dc3202cf0c42419d9a795735 (patch) | |
tree | dba592de78e4794d5e7da366dff273e10cbf0964 /apt-pkg | |
parent | eeecbe521fdad69a924992f505d0a32b53800cfc (diff) |
cachefile: Remove deprecated functions
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/cachefile.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/apt-pkg/cachefile.h b/apt-pkg/cachefile.h index ed5d5c57c..998145ee6 100644 --- a/apt-pkg/cachefile.h +++ b/apt-pkg/cachefile.h @@ -65,13 +65,11 @@ class pkgCacheFile inline unsigned char &operator [](pkgCache::DepIterator const &I) const {return (*DCache)[I];}; bool BuildCaches(OpProgress *Progress = NULL,bool WithLock = true); - APT_DEPRECATED_MSG("Pass Progress in as a pointer") bool BuildCaches(OpProgress &Progress,bool const &WithLock = true) { return BuildCaches(&Progress, WithLock); }; bool BuildSourceList(OpProgress *Progress = NULL); bool BuildPolicy(OpProgress *Progress = NULL); bool BuildDepCache(OpProgress *Progress = NULL); bool Open(OpProgress *Progress = NULL, bool WithLock = true); inline bool ReadOnlyOpen(OpProgress *Progress = NULL) { return Open(Progress, false); }; - APT_DEPRECATED_MSG("Pass Progress in as a pointer") bool Open(OpProgress &Progress,bool const &WithLock = true) { return Open(&Progress, WithLock); }; static void RemoveCaches(); void Close(); |