mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-11 05:22:40 -04:00
19 lines
566 B
C++
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;
|
|
}
|
|
}
|