diff mbox

RFA: implement C11 _Generic

Message ID Pine.LNX.4.64.1307232017520.15052@digraph.polyomino.org.uk
State New
Headers show

Commit Message

Joseph Myers July 23, 2013, 8:18 p.m. UTC
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.
diff mbox

Patch

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>