Skip to content

Commit f24f5b8

Browse files
committed
issue #10726 Error in processing Fortran file with character string returning function
sonarcloud: Remove this empty statement.
1 parent afd34be commit f24f5b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6698,7 +6698,7 @@ static bool keyWordsFortranC(const char *contents)
66986698

66996699
const char *c = contents;
67006700
QCString keyword;
6701-
while (*c && *c != ' ') {keyword += *c; c++;};
6701+
while (*c && *c != ' ') {keyword += *c; c++;}
67026702
keyword = keyword.lower();
67036703

67046704
return (fortran_C_keywords.find(keyword.str()) != fortran_C_keywords.end());

0 commit comments

Comments
 (0)