From 083e941686d0aa7505832d202f96bddaf1417c2a Mon Sep 17 00:00:00 2001 From: Andreas Tobler Date: Thu, 7 Feb 2008 20:03:40 +0100 Subject: [PATCH] [multiple changes] 2008-02-06 Douglas Gregor * g++.dg/ext/vector13.C: Fix for compilation under -pedantic. 2008-02-07 Andreas Tobler Douglas Gregor PR bootstrap/35115 * objcp-decl.c (objcp_comptypes): Call cp_comptypes, not comptypes. Co-Authored-By: Douglas Gregor From-SVN: r132173 --- gcc/objcp/ChangeLog | 6 ++++++ gcc/objcp/objcp-decl.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gcc/objcp/ChangeLog b/gcc/objcp/ChangeLog index 2ffd29cd176..e919ad2657e 100644 --- a/gcc/objcp/ChangeLog +++ b/gcc/objcp/ChangeLog @@ -1,3 +1,9 @@ +2008-02-07 Andreas Tobler + Douglas Gregor + + PR bootstrap/35115 + * objcp-decl.c (objcp_comptypes): Call cp_comptypes, not comptypes. + 2008-02-06 Kaveh R. Ghazi PR other/35107 diff --git a/gcc/objcp/objcp-decl.c b/gcc/objcp/objcp-decl.c index 12a73c1272a..8197dbe16c1 100644 --- a/gcc/objcp/objcp-decl.c +++ b/gcc/objcp/objcp-decl.c @@ -95,7 +95,7 @@ objcp_xref_tag (enum tree_code code ATTRIBUTE_UNUSED, tree name) int objcp_comptypes (tree type1, tree type2) { - return comptypes (type1, type2, COMPARE_STRICT); + return cp_comptypes (type1, type2, COMPARE_STRICT); } tree