aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMark Mitchell <mmitchel@gcc.gnu.org>1999-05-20 17:07:28 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>1999-05-20 17:07:28 +0000
commit06315a9a898e760c70869a0cc08e2eebac67ac71 (patch)
treedbcbdac721c954c15bbf6bb1d924f99c67c798d5 /gcc
parentb886540796da5203802db467343fbd379233912d (diff)
downloadgcc-06315a9a898e760c70869a0cc08e2eebac67ac71.zip
gcc-06315a9a898e760c70869a0cc08e2eebac67ac71.tar.gz
gcc-06315a9a898e760c70869a0cc08e2eebac67ac71.tar.bz2
Remove duplicate parameter name
From-SVN: r27067
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/unify1.C2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/unify1.C b/gcc/testsuite/g++.old-deja/g++.pt/unify1.C
index 283e2f5..8d2e062 100644
--- a/gcc/testsuite/g++.old-deja/g++.pt/unify1.C
+++ b/gcc/testsuite/g++.old-deja/g++.pt/unify1.C
@@ -11,4 +11,4 @@ void f (P c, kind k) {}
template<class P>
void f (P c, P d, kind k) {}
-template void f (C c, C c, kind k);
+template void f (C c, C, kind k);