This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
(committed) more PARAMS removal
- From: Nathanael Nerode <neroden at twcny dot rr dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Thu, 23 Jan 2003 15:21:24 -0500
- Subject: (committed) more PARAMS removal
Committed as obvious.
* cp-tree.h, decl.h: Get rid of PARAMS. Again.
Index: cp-tree.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cp/cp-tree.h,v
retrieving revision 1.804
diff -u -r1.804 cp-tree.h
--- cp-tree.h 22 Jan 2003 17:39:14 -0000 1.804
+++ cp-tree.h 23 Jan 2003 20:20:43 -0000
@@ -3877,9 +3877,9 @@
extern tree build_cleanup (tree);
extern void finish_file (void);
extern tree build_expr_from_tree (tree);
-extern tree build_cleanup PARAMS ((tree));
-extern void finish_file PARAMS ((void));
-extern tree build_expr_from_tree PARAMS ((tree));
+extern tree build_cleanup (tree);
+extern void finish_file (void);
+extern tree build_expr_from_tree (tree);
extern tree build_offset_ref_call_from_tree (tree, tree);
extern tree build_call_from_tree (tree, tree, bool);
extern void set_decl_namespace (tree, tree, bool);
Index: decl.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cp/decl.h,v
retrieving revision 1.9
diff -u -r1.9 decl.h
--- decl.h 30 Dec 2002 16:25:45 -0000 1.9
+++ decl.h 23 Jan 2003 20:20:43 -0000
@@ -31,8 +31,7 @@
};
/* We need this in here to get the decl_context definition. */
-extern tree grokdeclarator PARAMS ((tree, tree, enum decl_context, int,
- tree *));
+extern tree grokdeclarator (tree, tree, enum decl_context, int, tree*);
/* Parsing a function declarator leaves a list of parameter names
or a chain or parameter decls here. */