diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:57:57 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:57:57 +0000 |
commit | 851a45a85fa486abc642e10f19afef11f621c29d (patch) | |
tree | 4422363bbe6e4bf3fc5f9ca8f9efcfe9ec79f0b9 /apt-pkg/tagfile.cc | |
parent | 422d9f6e1887b3adbb2a8e6798c61390079a0965 (diff) |
G++3 fixes from Randolph
Author: jgg
Date: 2001-05-14 05:47:30 GMT
G++3 fixes from Randolph
Diffstat (limited to 'apt-pkg/tagfile.cc')
-rw-r--r-- | apt-pkg/tagfile.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apt-pkg/tagfile.cc b/apt-pkg/tagfile.cc index faea00ec5..49330bad5 100644 --- a/apt-pkg/tagfile.cc +++ b/apt-pkg/tagfile.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: tagfile.cc,v 1.29 2001/04/22 05:42:52 jgg Exp $ +// $Id: tagfile.cc,v 1.30 2001/05/14 05:56:26 jgg Exp $ /* ###################################################################### Fast scanner for RFC-822 type header information @@ -23,8 +23,11 @@ #include <string> #include <stdio.h> +#include <ctype.h> /*}}}*/ +using std::string; + // TagFile::pkgTagFile - Constructor /*{{{*/ // --------------------------------------------------------------------- /* */ |