]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/prettyprinters.h
support compression and by-hash for .diff/Index files
[apt.git] / apt-pkg / prettyprinters.h
index 4af0ecebdc0d0dbeb6056d11f8082dd3d764f979..51d9f81a03ffcd90bc496487098e5b80c7ed53a3 100644 (file)
@@ -14,9 +14,9 @@ namespace APT {
  */
 struct PrettyPkg
 {
-   pkgDepCache const * const DepCache;
+   pkgDepCache * const DepCache;
    pkgCache::PkgIterator const Pkg;
-   PrettyPkg(pkgDepCache const * const depcache, pkgCache::PkgIterator const &pkg) APT_NONNULL(2) : DepCache(depcache), Pkg(pkg) {}
+   PrettyPkg(pkgDepCache * const depcache, pkgCache::PkgIterator const &pkg) APT_NONNULL(2) : DepCache(depcache), Pkg(pkg) {}
 };
 /** helper to format DepIterator for easier printing in debug messages.
  *
@@ -25,9 +25,9 @@ struct PrettyPkg
  */
 struct PrettyDep
 {
-   pkgDepCache const * const DepCache;
+   pkgDepCache * const DepCache;
    pkgCache::DepIterator const Dep;
-   PrettyDep(pkgDepCache const * const depcache, pkgCache::DepIterator const &dep) APT_NONNULL(2) : DepCache(depcache), Dep(dep) {}
+   PrettyDep(pkgDepCache * const depcache, pkgCache::DepIterator const &dep) APT_NONNULL(2) : DepCache(depcache), Dep(dep) {}
 };
 
 }