From: Jason Merrill Date: Fri, 10 Oct 1997 07:43:28 +0000 (+0000) Subject: * tstring.cc (identitytest): s/remove/erase/. X-Git-Tag: releases/egcs-1.0.0~355 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=38bab5d4c64bf5953eef0ff6e9467ed60e0ad52c;p=thirdparty%2Fgcc.git * tstring.cc (identitytest): s/remove/erase/. From-SVN: r15886 --- diff --git a/libstdc++/tests/ChangeLog b/libstdc++/tests/ChangeLog index ac76090276e9..da8b5c407cb8 100644 --- a/libstdc++/tests/ChangeLog +++ b/libstdc++/tests/ChangeLog @@ -1,3 +1,7 @@ +Fri Oct 10 00:40:31 1997 Jason Merrill + + * tstring.cc (identitytest): s/remove/erase/. + Thu Sep 25 19:48:22 1997 Jason Merrill * tstring.cc: Add some tests for the member templates. diff --git a/libstdc++/tests/tstring.cc b/libstdc++/tests/tstring.cc index 954d77fd4e23..14e8706e3880 100644 --- a/libstdc++/tests/tstring.cc +++ b/libstdc++/tests/tstring.cc @@ -177,7 +177,7 @@ void identitytest(string a, string b) assert((a + b + a) == (a + (b + a))); - x.remove (x.rfind (b)); + x.erase (x.rfind (b)); assert(x == a); y.replace (0, y.rfind (b), b);