diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2007-02-21 09:59:53 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2007-02-21 09:59:53 +0100 |
commit | d715b9c969264eec96913b577f63a3e9e498b2e6 (patch) | |
tree | 414ba9bfb572ce0243c1ec7ae180b57702d94bd4 /apt-pkg/pkgrecords.h | |
parent | 68acfb437f0c6c2e026be6fd3b7da3fc8d64c523 (diff) |
* fix in the pkgRecords destructor
* Bump ABI version
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 31c444dbf..ad3946c1b 100644 --- a/apt-pkg/pkgrecords.h +++ b/apt-pkg/pkgrecords.h @@ -23,6 +23,7 @@ #include <apt-pkg/pkgcache.h> #include <apt-pkg/fileutl.h> +#include <vector> class pkgRecords { @@ -32,8 +33,8 @@ class pkgRecords private: pkgCache &Cache; - Parser **Files; - + std::vector<Parser *>Files; + public: // Lookup function |