diff options
author | Michael Vogt <egon@bottom> | 2007-06-10 23:55:03 +0200 |
---|---|---|
committer | Michael Vogt <egon@bottom> | 2007-06-10 23:55:03 +0200 |
commit | 3025794355fa84971e8d5d4f9e499258f769b127 (patch) | |
tree | 1d955281360aae977f027b17ced706ae0d19f890 /apt-pkg/pkgrecords.h | |
parent | f32484472374cb6c93fef0cd4ee9f71a7b80ec8a (diff) | |
parent | 47026cdea6ba7d145922ce21d5ec478598126b8d (diff) |
* apt-pkg/pkgrecords.cc,h:
- merge fix in destructor code
Diffstat (limited to 'apt-pkg/pkgrecords.h')
-rw-r--r-- | apt-pkg/pkgrecords.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apt-pkg/pkgrecords.h b/apt-pkg/pkgrecords.h index ea1a23fc4..7b9f51a50 100644 --- a/apt-pkg/pkgrecords.h +++ b/apt-pkg/pkgrecords.h @@ -20,6 +20,7 @@ #include <apt-pkg/pkgcache.h> #include <apt-pkg/fileutl.h> +#include <vector> class pkgRecords { @@ -29,8 +30,8 @@ class pkgRecords private: pkgCache &Cache; - Parser **Files; - + std::vector<Parser *>Files; + public: // Lookup function |