From: David Kalnischkies Date: Fri, 19 Mar 2010 12:06:48 +0000 (+0100) Subject: add a missing non-const & Accessors to the Iterator class X-Git-Tag: 0.8.0~9^2~64^2~16 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/9552aeeb1524d5b659ae209becb322b3d6763183 add a missing non-const & Accessors to the Iterator class --- diff --git a/apt-pkg/cacheiterators.h b/apt-pkg/cacheiterators.h index 28e062f3c..e2ca74683 100644 --- a/apt-pkg/cacheiterators.h +++ b/apt-pkg/cacheiterators.h @@ -62,6 +62,7 @@ template class pkgCache::Iterator { inline Str const *operator ->() const {return S;}; inline operator Str *() {return S == OwnerPointer() ? 0 : S;}; inline operator Str const *() const {return S == OwnerPointer() ? 0 : S;}; + inline Str &operator *() {return *S;}; inline Str const &operator *() const {return *S;}; inline pkgCache *Cache() {return Owner;};