From c78c338fffbdbb9b2379b1896e647f7cc697da57 Mon Sep 17 00:00:00 2001 From: Dimitri van Heesch Date: Tue, 1 May 2018 21:36:17 +0200 Subject: Fixed compiler warning for nested /* in scanner.l --- src/scanner.l | 4 ++-- 1 file 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}) "." {} \n { lineCount(); } "\"" { BEGIN(CSAccessorDecl);} -"//" {} /* Otherwise the rule <*>"//" will kick in */ -"/*" {} /* Otherwise the rule <*>"/*" will kick in */ +"//" {} // Otherwise the rule <*>"//" will kick in +"/*" {} // Otherwise the rule <*>"/*" will kick in \n { lineCount(); } "." {} -- cgit v0.12