* gengtype-lex.l (<in_struct>): Add '/'.
authorNathan Sidwell <nathan@acm.org>
Mon, 13 Feb 2017 15:06:47 +0000 (15:06 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Mon, 13 Feb 2017 15:06:47 +0000 (15:06 +0000)
From-SVN: r245387

gcc/ChangeLog
gcc/gengtype-lex.l

index 19c9e010d7cf220b400c506b58192b250e28a2ac..1caf3076cecbba2282478ce5c0083fb77dcf26cb 100644 (file)
@@ -1,3 +1,7 @@
+2017-02-13  Nathan Sidwell  <nathan@acm.org>
+
+       * gengtype-lex.l (<in_struct>): Add '/'.
+
 2017-02-13  Martin Liska  <mliska@suse.cz>
 
        PR c/79471
index 8eee652241c1fb627634039396add8b0bf4da56f..17ead396689a073a489c4191e706bd95cefe8466 100644 (file)
@@ -159,7 +159,7 @@ CXX_KEYWORD inline|public:|private:|protected:|template|operator|friend|static
 }
 
 "..."                          { return ELLIPSIS; }
-[(){},*:<>;=%|+\!\?\.-]                { return yytext[0]; }
+[(){},*:<>;=%/|+\!\?\.-]       { return yytext[0]; }
 
    /* ignore pp-directives */
 ^{HWS}"#"{HWS}[a-z_]+[^\n]*\n   {lexer_line.line++;}