diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:58:05 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:58:05 +0000 |
commit | 076d01b04c20200fc72fc22de41c4872af484650 (patch) | |
tree | 69b1cf0aefd04868fb193132a2623fea137528f7 /cmdline/indexcopy.h | |
parent | 43b3b6267f24ef28f74f9b16999844fb9809e72b (diff) |
G++3 fixes from Randolph
Author: jgg
Date: 2001-05-27 04:45:49 GMT
G++3 fixes from Randolph
Diffstat (limited to 'cmdline/indexcopy.h')
-rw-r--r-- | cmdline/indexcopy.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cmdline/indexcopy.h b/cmdline/indexcopy.h index 44a5e7d6b..e44a91727 100644 --- a/cmdline/indexcopy.h +++ b/cmdline/indexcopy.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: indexcopy.h,v 1.2 2001/02/20 07:03:17 jgg Exp $ +// $Id: indexcopy.h,v 1.3 2001/05/27 04:46:54 jgg Exp $ /* ###################################################################### Index Copying - Aid for copying and verifying the index files @@ -14,6 +14,9 @@ #include <string> #include <stdio.h> +using std::string; +using std::vector; + class pkgTagSection; class FileFd; |