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/pkgcache.cc | |
parent | 7959c5eda83bd6d69876942566cf47d74fc76530 (diff) |
* apt-pkg/cacheset.{cc,h}:
- add simple wrapper around std::set for cache structures
Diffstat (limited to 'apt-pkg/pkgcache.cc')
-rw-r--r-- | apt-pkg/pkgcache.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/pkgcache.cc b/apt-pkg/pkgcache.cc index adaae9c89..30bb41470 100644 --- a/apt-pkg/pkgcache.cc +++ b/apt-pkg/pkgcache.cc @@ -742,7 +742,7 @@ pkgCache::VerFileIterator pkgCache::VerIterator::NewestFile() const // --------------------------------------------------------------------- /* This describes the version from a release-centric manner. The output is a list of Label:Version/Archive */ -string pkgCache::VerIterator::RelStr() +string pkgCache::VerIterator::RelStr() const { bool First = true; string Res; |