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]

Re: RFA: implement C11 _Generic


On Tue, 23 Jul 2013, Tom Tromey wrote:

> Joseph> +  /* The association's type, or NULL_TREE for 'default'..  */
> 
> It's trivial, but I happened to notice that this ".." should be just
> ".".  The extra "." was in the original patch too.

Thanks, I've applied this patch to fix this typo.

Index: c-parser.c
===================================================================
--- c-parser.c	(revision 201177)
+++ c-parser.c	(working copy)
@@ -6238,7 +6238,7 @@
 {
   /* The location of the starting token of the type.  */
   location_t type_location;
-  /* The association's type, or NULL_TREE for 'default'..  */
+  /* The association's type, or NULL_TREE for 'default'.  */
   tree type;
   /* The association's expression.  */
   struct c_expr expression;
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 201177)
+++ ChangeLog	(working copy)
@@ -1,3 +1,7 @@
+2013-07-23  Joseph Myers  <joseph@codesourcery.com>
+
+	* c-parser.c (struct c_generic_association): Fix typo.
+
 2013-07-23  Tom Tromey  <tromey@redhat.com>
 	    Joseph Myers  <joseph@codesourcery.com>
 

-- 
Joseph S. Myers
joseph@codesourcery.com


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