diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:58:14 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:58:14 +0000 |
commit | 812f4169fee839b6cc6532a76276e0a957aeba77 (patch) | |
tree | e2b2ef77664716660b08560d8655b46c4b477cf3 /ftparchive/override.h | |
parent | 0a5e4a031a039329cc0d27268be6a623e892c452 (diff) |
G++3 fixes from Randolph
Author: jgg
Date: 2001-05-29 03:48:27 GMT
G++3 fixes from Randolph
Diffstat (limited to 'ftparchive/override.h')
-rw-r--r-- | ftparchive/override.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ftparchive/override.h b/ftparchive/override.h index 63f123c42..5917b9c92 100644 --- a/ftparchive/override.h +++ b/ftparchive/override.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: override.h,v 1.2 2001/02/20 07:03:18 jgg Exp $ +// $Id: override.h,v 1.3 2001/05/29 03:49:53 jgg Exp $ /* ###################################################################### Override @@ -18,6 +18,9 @@ #include <map> #include <string> + +using std::string; +using std::map; class Override { |