diff options
author | Andreas Tobler <andreast-list@fgznet.ch> | 2008-02-07 20:03:40 +0100 |
---|---|---|
committer | Doug Gregor <dgregor@gcc.gnu.org> | 2008-02-07 19:03:40 +0000 |
commit | 083e941686d0aa7505832d202f96bddaf1417c2a (patch) | |
tree | e4cd2ba27a824f961f659b2528d21b328ea1da08 /gcc/objcp | |
parent | 96e2afa84b540bd4d2c6f019a1fa0ddbc64e565d (diff) | |
download | gcc-083e941686d0aa7505832d202f96bddaf1417c2a.zip gcc-083e941686d0aa7505832d202f96bddaf1417c2a.tar.gz gcc-083e941686d0aa7505832d202f96bddaf1417c2a.tar.bz2 |
[multiple changes]
2008-02-06 Douglas Gregor <doug.gregor@gmail.com>
* g++.dg/ext/vector13.C: Fix for compilation under -pedantic.
2008-02-07 Andreas Tobler <andreast-list@fgznet.ch>
Douglas Gregor <doug.gregor@gmail.com>
PR bootstrap/35115
* objcp-decl.c (objcp_comptypes): Call cp_comptypes, not comptypes.
Co-Authored-By: Douglas Gregor <doug.gregor@gmail.com>
From-SVN: r132173
Diffstat (limited to 'gcc/objcp')
-rw-r--r-- | gcc/objcp/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/objcp/objcp-decl.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/objcp/ChangeLog b/gcc/objcp/ChangeLog index 2ffd29c..e919ad2 100644 --- a/gcc/objcp/ChangeLog +++ b/gcc/objcp/ChangeLog @@ -1,3 +1,9 @@ +2008-02-07 Andreas Tobler <andreast-list@fgznet.ch> + Douglas Gregor <doug.gregor@gmail.com> + + PR bootstrap/35115 + * objcp-decl.c (objcp_comptypes): Call cp_comptypes, not comptypes. + 2008-02-06 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> PR other/35107 diff --git a/gcc/objcp/objcp-decl.c b/gcc/objcp/objcp-decl.c index 12a73c1..8197dbe 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 |