diff options
-rw-r--r-- | gcc/cp/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/cp/decl.h | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 0752983b3d1..b414e27b54c 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,5 +1,7 @@ 2002-01-09 Graham Stott <grahams@redhat.com> + * decl.h ( grokdeclarator): Wrap long line. + * semantics.c (FINISH_COND): Uppercase macro paramaters and add parenthesis. diff --git a/gcc/cp/decl.h b/gcc/cp/decl.h index 6f1418a3a3e..2316f06728d 100644 --- a/gcc/cp/decl.h +++ b/gcc/cp/decl.h @@ -1,5 +1,5 @@ /* Variables and structures for declaration processing. - Copyright (C) 1993, 2000 Free Software Foundation, Inc. + Copyright (C) 1993, 2000, 2002 Free Software Foundation, Inc. This file is part of GNU CC. @@ -31,7 +31,8 @@ enum decl_context }; /* 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 PARAMS ((tree, tree, enum decl_context, int, + tree *)); /* Parsing a function declarator leaves a list of parameter names or a chain or parameter decls here. */ |