diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2007-07-03 11:39:38 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2007-07-03 11:39:38 +0200 |
commit | 6724d2173133f24bc8a3875c13513761f9340627 (patch) | |
tree | e2b68165ce56260da667c0dc137808d117162ed7 /apt-pkg/pkgrecords.h | |
parent | 36baa77ad9711a98c1407990a2f04acf666d4408 (diff) | |
parent | ec5e7f30f3bd98749c4b11b4edd64bbb89c4dc15 (diff) |
* merged fixes from otavio (thanks!)
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 |