This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[committed] obvious bootstrap fix


nathan's last patch broke bootstrap with a warning :)

this removes the unused variable.

checked with make restrap getting further :)

-eric

-- 
Eric Christopher <echristo@redhat.com>

2004-07-12  Eric Christopher  <echristo@redhat.com>
 
        * parser.c (cp_parser_class_head): Remove unused variable.


Index: parser.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cp/parser.c,v
retrieving revision 1.226
diff -u -p -w -r1.226 parser.c
--- parser.c	12 Jul 2004 16:06:30 -0000	1.226
+++ parser.c	12 Jul 2004 18:48:14 -0000
@@ -12482,7 +12482,6 @@ cp_parser_class_head (cp_parser* parser,
 		      bool* nested_name_specifier_p,
 		      tree *attributes_p)
 {
-  cp_token *token;
   tree nested_name_specifier;
   enum tag_types class_key;
   tree id = NULL_TREE;

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]