diff options
author | Jason Merrill <jason@gcc.gnu.org> | 1998-10-28 06:40:53 -0500 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 1998-10-28 06:40:53 -0500 |
commit | c98927faa9b0899edf6101501f3bac2c8c40cdf0 (patch) | |
tree | ee9814c8a0e736961c726e55a6ebd73765dcb057 /gcc | |
parent | 5aa9767643d1f65d53e25ce2320816af23b47e44 (diff) | |
download | gcc-c98927faa9b0899edf6101501f3bac2c8c40cdf0.zip gcc-c98927faa9b0899edf6101501f3bac2c8c40cdf0.tar.gz gcc-c98927faa9b0899edf6101501f3bac2c8c40cdf0.tar.bz2 |
fix
From-SVN: r23400
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.pt/ttp14.C | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/ttp14.C b/gcc/testsuite/g++.old-deja/g++.pt/ttp14.C index 3b284ae..04877d6 100644 --- a/gcc/testsuite/g++.old-deja/g++.pt/ttp14.C +++ b/gcc/testsuite/g++.old-deja/g++.pt/ttp14.C @@ -17,7 +17,7 @@ template<class E,template<class> class DD = D> class C int f(); }; -template<class E,template<class> class DD = D> int C<E,DD>::f() +template<class E,template<class> class DD> int C<E,DD>::f() { DD<E> d2; return d2.f(); |