[nit] Fixed lib/tokenize.cpp:2815:2: warning: extra ‘;’ [-Wpedantic] (#5071)

Single character fix removing extra semi colon.
This commit is contained in:
Stefan Hagen 2023-05-23 06:27:25 +02:00 committed by GitHub
parent 33f728df14
commit 9e8cb6904a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2812,7 +2812,7 @@ static unsigned int tokDistance(const Token* tok1, const Token* tok2) {
tok = tok->next(); tok = tok->next();
} }
return dist; return dist;
}; }
bool Tokenizer::simplifyUsing() bool Tokenizer::simplifyUsing()
{ {