Kaydet (Commit) bf287946 authored tarafından Matthew Brush's avatar Matthew Brush

Adjust 'fall through' comments to be recognized by GCC

As per the documentation[0], GCC will silence these warnings when
the comments are formatted correctly.

[0]: https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html
üst 243d55fa
......@@ -673,7 +673,7 @@ static int getFixedFormChar (void)
Column = 6;
break;
}
/* fall through to next case */
/* fall through */
case LTYPE_CONTINUATION:
Column = 5;
do
......@@ -1001,7 +1001,7 @@ getNextChar:
skipLine ();
Column = 0;
}
/* fall through to newline case */
/* fall through */
case '\n':
token->type = TOKEN_STATEMENT_END;
if (FreeSourceForm)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment