diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:57:13 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:57:13 +0000 |
commit | 500827ed367c8ac277abbd582d389f6738905a09 (patch) | |
tree | 858f2638647a3ae5ad14006f2c3be28bd0456811 /apt-pkg/tagfile.h | |
parent | 678bc33eaf95356d1b63090d220b65162478b89a (diff) |
Pedantic fixes
Author: jgg
Date: 2001-03-11 07:22:19 GMT
Pedantic fixes
Diffstat (limited to 'apt-pkg/tagfile.h')
-rw-r--r-- | apt-pkg/tagfile.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apt-pkg/tagfile.h b/apt-pkg/tagfile.h index 948adb426..a85d24b7e 100644 --- a/apt-pkg/tagfile.h +++ b/apt-pkg/tagfile.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: tagfile.h,v 1.15 2001/02/20 07:03:17 jgg Exp $ +// $Id: tagfile.h,v 1.16 2001/03/11 07:22:19 jgg Exp $ /* ###################################################################### Fast scanner for RFC-822 type header information @@ -47,8 +47,8 @@ class pkgTagSection bool Find(const char *Tag,unsigned &Pos) const; string FindS(const char *Tag) const; signed int FindI(const char *Tag,signed long Default = 0) const ; - bool pkgTagSection::FindFlag(const char *Tag,unsigned long &Flags, - unsigned long Flag) const; + bool FindFlag(const char *Tag,unsigned long &Flags, + unsigned long Flag) const; bool Scan(const char *Start,unsigned long MaxLength); inline unsigned long size() const {return Stop - Section;}; void Trim(); |