Fix most clang -Wextra-semi-stmt warnings in C++ files

Suppress one in code generated by flex.
This commit is contained in:
Sean McBride
2019-01-11 16:58:56 -05:00
committed by Brad King
parent da566d4de8
commit b056bc3425
27 changed files with 81 additions and 66 deletions
+1 -1
View File
@@ -869,7 +869,7 @@ Modify cmDependsJavaLexer.cxx:
/* Replace the lexer input function. */
#undef YY_INPUT
#define YY_INPUT(buf, result, max_size) \
{ result = yyextra->LexInput(buf, max_size); }
do { result = yyextra->LexInput(buf, max_size); } while (0)
/* Include the set of tokens from the parser. */
#include "cmDependsJavaParserTokens.h"