Skip to content

Commit 9e8cb69

Browse files
authored
[nit] Fixed lib/tokenize.cpp:2815:2: warning: extra ‘;’ [-Wpedantic] (#5071)
Single character fix removing extra semi colon.
1 parent 33f728d commit 9e8cb69

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/tokenize.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2812,7 +2812,7 @@ static unsigned int tokDistance(const Token* tok1, const Token* tok2) {
28122812
tok = tok->next();
28132813
}
28142814
return dist;
2815-
};
2815+
}
28162816

28172817
bool Tokenizer::simplifyUsing()
28182818
{

0 commit comments

Comments
 (0)