diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2018-05-01 19:36:17 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2018-05-01 19:36:17 (GMT) |
commit | c78c338fffbdbb9b2379b1896e647f7cc697da57 (patch) | |
tree | 6c581a09fba19ad8bf661ec1594cf9db9e0485ad /src | |
parent | cbe790f19cc89478fa1f981fd4dc06afa73a02ba (diff) | |
download | Doxygen-c78c338fffbdbb9b2379b1896e647f7cc697da57.zip Doxygen-c78c338fffbdbb9b2379b1896e647f7cc697da57.tar.gz Doxygen-c78c338fffbdbb9b2379b1896e647f7cc697da57.tar.bz2 |
Fixed compiler warning for nested /* in scanner.l
Diffstat (limited to 'src')
-rw-r--r-- | src/scanner.l | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scanner.l b/src/scanner.l index 381ad6b..3609d32 100644 --- a/src/scanner.l +++ b/src/scanner.l @@ -6239,8 +6239,8 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP}) <CSAccessorDecl>"." {} <CSAccessorDecl>\n { lineCount(); } <CSString>"\"" { BEGIN(CSAccessorDecl);} -<CSString>"//" {} /* Otherwise the rule <*>"//" will kick in */ -<CSString>"/*" {} /* Otherwise the rule <*>"/*" will kick in */ +<CSString>"//" {} // Otherwise the rule <*>"//" will kick in +<CSString>"/*" {} // Otherwise the rule <*>"/*" will kick in <CSString>\n { lineCount(); } <CSString>"." {} |