aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJason Merrill <jason@gcc.gnu.org>2000-04-20 02:54:02 -0400
committerJason Merrill <jason@gcc.gnu.org>2000-04-20 02:54:02 -0400
commit68489c4d5a8745df0c443a8eb649e7591a225a54 (patch)
treebf98d37962bb604c0d650cca99cc0ecf0332d356 /gcc
parent9fc51663be67136c159d8fa42df8c0ae8b56499c (diff)
downloadgcc-68489c4d5a8745df0c443a8eb649e7591a225a54.zip
gcc-68489c4d5a8745df0c443a8eb649e7591a225a54.tar.gz
gcc-68489c4d5a8745df0c443a8eb649e7591a225a54.tar.bz2
update
From-SVN: r33275
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.robertl/eb127.C2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb127.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb127.C
index cf5f69f..655aca9 100644
--- a/gcc/testsuite/g++.old-deja/g++.robertl/eb127.C
+++ b/gcc/testsuite/g++.old-deja/g++.robertl/eb127.C
@@ -46,7 +46,7 @@ void ODEsolver::init()
void ODEsolver::timeloop(vector<double>& y, double ts, double te, double dt)
{
- (ODEsolver::useMethod)(y,ts,dt);
+ (ODEsolver::useMethod)(y,ts,dt); // ERROR - should use this->*
}
int main (int nargs, char** args)