pkgsrc/textproc/isearch/patches/patch-src_fct.hxx
dholland 1996770c3c Chase after that moving target known lightly as the C++ "standard".
Fixes build. Also clean up insecure-temporary-files. PKGREVISION -> 1.
2012-12-21 10:29:46 +00:00

19 lines
567 B
C++

$NetBSD: patch-src_fct.hxx,v 1.1 2012/12/21 10:29:47 dholland Exp $
Chase after the C++ standard:
- use "std" qualification
--- src/fct.hxx~ 2001-11-21 07:01:57.000000000 +0000
+++ src/fct.hxx
@@ -31,9 +31,9 @@ public:
void SortByFc();
void Write(PFILE fp) const;
void Read(PFILE fp);
- void Print(ostream& Os) const;
+ void Print(std::ostream& Os) const;
void SubtractOffset(const GPTYPE GpOffset);
- friend ostream& operator<<(ostream& os, const FCT& Fct);
+ friend std::ostream& operator<<(std::ostream& os, const FCT& Fct);
};
typedef FCT* PFCT;