]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/cacheiterators.h
* apt-pkg/contrib/configuration.cc:
[apt.git] / apt-pkg / cacheiterators.h
index 28e062f3c502038a814d9475f58b9cf1c122b076..e2ca746838ce075977406c5d669607efc39504f7 100644 (file)
@@ -62,6 +62,7 @@ template<typename Str, typename Itr> 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;};