blob: 173226dcbf13a04898b4db82ef566cc0d407660d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
$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;
}
}
|