mirror of git://gcc.gnu.org/git/gcc.git
[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
This commit is contained in:
parent
96e2afa84b
commit
083e941686
|
|
@ -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>
|
2008-02-06 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||||
|
|
||||||
PR other/35107
|
PR other/35107
|
||||||
|
|
|
||||||
|
|
@ -95,7 +95,7 @@ objcp_xref_tag (enum tree_code code ATTRIBUTE_UNUSED, tree name)
|
||||||
int
|
int
|
||||||
objcp_comptypes (tree type1, tree type2)
|
objcp_comptypes (tree type1, tree type2)
|
||||||
{
|
{
|
||||||
return comptypes (type1, type2, COMPARE_STRICT);
|
return cp_comptypes (type1, type2, COMPARE_STRICT);
|
||||||
}
|
}
|
||||||
|
|
||||||
tree
|
tree
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue