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.
2 parents fb66cae + 3785228 commit 5072006Copy full SHA for 5072006
src/scanner.l
@@ -4234,7 +4234,7 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
4234
<FuncFuncType>. {
4235
current->type += *yytext;
4236
}
4237
-<FindMembers>"("/{BN}*{ID}{BN}*"*"{BN}*{ID}*")(" { // for catching typedef void (__stdcall *f)() like definitions
+<FindMembers>"("/{BN}*{ID}{BN}*"*"{BN}*{ID}*")"{BN}*"(" { // for catching typedef void (__stdcall *f)() like definitions
4238
if (current->type.left(7)=="typedef" && current->bodyLine==-1)
4239
// the bodyLine check is to prevent this guard to be true more than once
4240
{
0 commit comments