diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2010-05-31 22:36:41 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2010-05-31 22:36:41 +0200 |
commit | d4489d4983d5b9840bb2882a088dd1f363a280b9 (patch) | |
tree | 14b5e53bdc0390c9d16220b17bd88b5d00ef24b1 /apt-pkg/cacheiterators.h | |
parent | 7959c5eda83bd6d69876942566cf47d74fc76530 (diff) |
* apt-pkg/cacheset.{cc,h}:
- add simple wrapper around std::set for cache structures
Diffstat (limited to 'apt-pkg/cacheiterators.h')
-rw-r--r-- | apt-pkg/cacheiterators.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/cacheiterators.h b/apt-pkg/cacheiterators.h index e5b23a818..f0b40dbb5 100644 --- a/apt-pkg/cacheiterators.h +++ b/apt-pkg/cacheiterators.h @@ -205,8 +205,8 @@ class pkgCache::VerIterator : public Iterator<Version, VerIterator> { inline PrvIterator ProvidesList() const; inline VerFileIterator FileList() const; bool Downloadable() const; - inline const char *PriorityType() {return Owner->Priority(S->Priority);}; - string RelStr(); + inline const char *PriorityType() const {return Owner->Priority(S->Priority);}; + string RelStr() const; bool Automatic() const; bool Pseudo() const; |