]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/depcache.h
Refactor InternalReadLine to not unroll Size == 0 case
[apt.git] / apt-pkg / depcache.h
index a1be56bb24fcddec13807a468c69b3a84253d635..10f869f252b158014d41f5a6fcb118caa46a6a6c 100644 (file)
@@ -362,7 +362,7 @@ class pkgDepCache : protected pkgCache::Namespace
    inline pkgVersioningSystem &VS() {return *Cache->VS;};
 
    // Policy implementation
-   APT_DEPRECATED inline VerIterator GetCandidateVer(PkgIterator const &Pkg) {return /* GetCandidateVersion(Pkg); but for API compat: */ LocalPolicy->GetCandidateVer(Pkg);};
+   APT_DEPRECATED_MSG("Confusingly named method which returns the candidate as chosen by policy (NOT as chosen via .SetCandidateVersion!). You probably want to use .GetCandidateVersion instead.") inline VerIterator GetCandidateVer(PkgIterator const &Pkg) {return /* GetCandidateVersion(Pkg); but for API compat: */ LocalPolicy->GetCandidateVer(Pkg);};
 
    inline bool IsImportantDep(DepIterator Dep) const {return LocalPolicy->IsImportantDep(Dep);};
    inline Policy &GetPolicy() {return *LocalPolicy;};
@@ -419,7 +419,7 @@ class pkgDepCache : protected pkgCache::Namespace
     *
     * The version returned is the version previously set explicitly via
     * SetCandidate* methods like #SetCandidateVersion or if there wasn't one
-    * set the version as choosen via #Policy.
+    * set the version as chosen via #Policy.
     *
     * @param Pkg is the package to return the candidate for
     */