summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/scanner.l4
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>"." {}