pkgsrc-ng/textproc/isearch/patches/patch-src_multiterm.cxx
2013-09-26 17:14:40 +02:00

19 lines
566 B
C++

$NetBSD: patch-src_multiterm.cxx,v 1.1 2012/12/21 10:29:47 dholland Exp $
Chase after the C++ standard:
- use "std" qualification
--- src/multiterm.cxx~ 1999-03-26 00:27:22.000000000 +0000
+++ src/multiterm.cxx
@@ -394,8 +394,8 @@ PIRSET INDEX::MultiTermSearch(const STRI
Disk=0;
} else {
// field file not found - return an empty irset
- cerr << "Field " << FieldName << " not present in this index."
- << endl;
+ std::cerr << "Field " << FieldName << " not present in this index."
+ << std::endl;
return pirset;
}
}