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
This commit is contained in:
Anthony Williams 2000-06-02 18:31:44 +00:00 committed by Benjamin Kosnik
parent 0c031c5cb9
commit 3ce7458060
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
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.

View File

@ -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