Fix comment so that /* does not appear inside a comment.
The block comment in m2.flex associated with splitSlashStar contains /* which causes a warning. This patch obfuscates the comment /* symbols. * m2.flex (splitSlashStar): Fix comment so that /* does not appear inside the comment. Signed-off-by: Gaius Mulley <gaiusmod2@gmail.com>
This commit is contained in:
parent
95dca4e748
commit
67bcd1c5ed
1 changed files with 2 additions and 2 deletions
|
@ -542,8 +542,8 @@ static void assert_location (location_t location ATTRIBUTE_UNUSED)
|
|||
/*
|
||||
* splitSlashStar - called if we are not tokenizing source code after it
|
||||
* has been preprocessed by cpp. It is only called
|
||||
* if the current token was /* and therefore it will
|
||||
* be split into two m2 tokens: / and *.
|
||||
* if the current token was a / immediately followed by * and
|
||||
* therefore it will be split into two m2 tokens: / and *.
|
||||
*/
|
||||
|
||||
static void splitSlashStar (void)
|
||||
|
|
Loading…
Add table
Reference in a new issue