We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b6e925 commit b27f1a9Copy full SHA for b27f1a9
c.c
@@ -2202,11 +2202,11 @@ static void parseReturnType (statementInfo *const st)
2202
vStringPut (ReturnType, '&');
2203
break;
2204
2205
- case TOKEN_KEYWORD:
2206
- vStringPut (ReturnType, ' ');
2207
-
2208
default:
2209
vStringCat (ReturnType, curr_tok->name);
+ if (curr_tok->type == TOKEN_KEYWORD) {
+ vStringPut (ReturnType, ' ');
+ }
2210
2211
}
2212
0 commit comments