Commit 3ce74580 by Anthony Williams Committed by Benjamin Kosnik

replace.cc (test01): Qualify find with std::.


2000-06-02  Anthony Williams  <anthony@anthonyw.cjb.net>

	* testsuite/21_strings/replace.cc (test01): Qualify find with std::.

From-SVN: r34363
parent 0c031c5c
2000-06-02 Anthony Williams <anthony@anthonyw.cjb.net>
* testsuite/21_strings/replace.cc (test01): Qualify find with std::.
2000-06-01 Benjamin Kosnik <bkoz@gnu.org>
* bits/std_cwctype.h: Clean.
......
......@@ -73,8 +73,8 @@ bool test01(void)
test &= x == "jello";
int ar[] = { 'H', 'e', 'l', 'l', 'o' };
x.replace(find(x.begin(), x.end(), 'l'),
find(x.rbegin(), x.rend(), 'l').base(), ar,
x.replace(std::find(x.begin(), x.end(), 'l'),
std::find(x.rbegin(), x.rend(), 'l').base(), ar,
ar + sizeof(ar) / sizeof(ar[0]));
test &= x == "jeHelloo";
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment