From: Jason Merrill Date: Mon, 22 Oct 2001 21:56:40 +0000 (-0400) Subject: tweak X-Git-Tag: prereleases/libstdc++-3.0.95~1476 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f20a609feb9b6f7c2bd4f6faf792915024d02cf3;p=thirdparty%2Fgcc.git tweak From-SVN: r46416 --- diff --git a/gcc/testsuite/g++.old-deja/g++.law/operators32.C b/gcc/testsuite/g++.old-deja/g++.law/operators32.C index daebcefd3390..fcf01bc40c42 100644 --- a/gcc/testsuite/g++.old-deja/g++.law/operators32.C +++ b/gcc/testsuite/g++.old-deja/g++.law/operators32.C @@ -3,11 +3,11 @@ #include // -// frees space allocated for N-D array +// ffrees space allocated for N-D array // template -void free(long rows, T** array) +void ffree(long rows, T** array) { for( long i = 0; i < rows; i++ ) delete [] array[i]; // delete row @@ -29,7 +29,7 @@ if( allocate1d(d1, array) != 0 ) { if( allocate1d(d2, array[i]) == 0 ) { - free(i,array); + ffree(i,array); return array; } } @@ -50,6 +50,6 @@ foo() {std::cout << "foo created" << std::endl; } foo **f2; allocate2d(d1, d2, f2);// ERROR - type.*// ERROR - trying to.* -free(d1, f2);// ERROR - type.*// ERROR - trying to.* +ffree(d1, f2);// ERROR - type.*// ERROR - trying to.* }