diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-28 04:37:41 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-28 04:37:41 +0000 |
commit | eb32e911e2e75329903d38e72ff207ede5ca722c (patch) | |
tree | 2d57274d896402f7f0c0a9338f7d3dfc555c03af /gcc/cp/decl.c | |
parent | b5acc67587c56bfea46923a96b679362fab969f4 (diff) | |
download | gcc-eb32e911e2e75329903d38e72ff207ede5ca722c.tar.gz |
* c-decl.c (finish_function): Convert definition to ISO C90.
* ifcvt.c (mark_loop_exit_edges): Likewise.
* ra-rewrite.c (emit_colors): Likewise.
For cp:
* decl.c (cxx_builtin_type_decls): Convert to ISO C90 function
definition.
* init.c (push_base_cleanups): Likewise.
* decl2.c (finish_file): Likewise.
* mangle.c (init_mangle): Likewise.
(dump_substitution_candidates): Likewise.
* search.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71872 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/decl.c')
-rw-r--r-- | gcc/cp/decl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index 5eab2102575..d60bcb43faf 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -5879,7 +5879,7 @@ static GTY(()) tree builtin_type_decls; /* Return a chain of TYPE_DECLs for the builtin types. */ tree -cxx_builtin_type_decls () +cxx_builtin_type_decls (void) { return builtin_type_decls; } |