]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/pkgrecords.cc
* apt-pkg/contrib/fileutl.h:
[apt.git] / apt-pkg / pkgrecords.cc
index 9459f7defce10b505e2178cbe131a1d0c131706a..c5b3bebd70ba5e2f3f6a4782c60eec3d2717889d 100644 (file)
@@ -26,7 +26,7 @@ pkgRecords::pkgRecords(pkgCache &Cache) : Cache(Cache),
   Files(Cache.HeaderP->PackageFileCount)
 {
    for (pkgCache::PkgFileIterator I = Cache.FileBegin();
-        I.end() == false; I++)
+        I.end() == false; ++I)
    {
       const pkgIndexFile::Type *Type = pkgIndexFile::Type::GetType(I.IndexType());
       if (Type == 0)
@@ -46,7 +46,7 @@ pkgRecords::pkgRecords(pkgCache &Cache) : Cache(Cache),
 /* */
 pkgRecords::~pkgRecords()
 {
-   for ( vector<Parser*>::iterator it = Files.begin();
+   for ( std::vector<Parser*>::iterator it = Files.begin();
      it != Files.end();
      ++it)
    {