]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/cachefilter.h
German translation proof read by Helge Kreutzmann
[apt.git] / apt-pkg / cachefilter.h
index 2719154c16b1446b0a0fdb4e30d9a9fadee3388c..30a3368e59df64bdca83f4bec7cff1e81c502f4e 100644 (file)
@@ -29,7 +29,7 @@ public:
 
 class PackageMatcher : public Matcher {
 public:
-   virtual bool operator() (pkgCache::PkgIterator const &Pkg) = 0;
+   virtual bool operator() (pkgCache::PkgIterator const &Pkg) APT_OVERRIDE = 0;
    virtual bool operator() (pkgCache::VerIterator const &Ver) APT_OVERRIDE { return (*this)(Ver.ParentPkg()); }
    virtual bool operator() (pkgCache::GrpIterator const &/*Grp*/) APT_OVERRIDE { return false; }
    virtual ~PackageMatcher();
@@ -115,11 +115,11 @@ class PackageArchitectureMatchesSpecification : public PackageMatcher {   /*{{{*/
 /** \class PackageArchitectureMatchesSpecification
    \brief matching against architecture specification strings
 
-   The strings are of the format <kernel>-<cpu> where either component,
+   The strings are of the format <libc>-<kernel>-<cpu> where either component,
    or the whole string, can be the wildcard "any" as defined in
    debian-policy ยง11.1 "Architecture specification strings".
 
-   Examples: i386, mipsel, linux-any, any-amd64, any */
+   Examples: i386, mipsel, musl-linux-amd64, linux-any, any-amd64, any */
        std::string literal;
        std::string complete;
        bool isPattern;