diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2016-01-24 10:39:44 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2016-01-24 10:39:44 (GMT) |
commit | 37852281fca7e8080bd62dc702f2c6b2017e699e (patch) | |
tree | 6cac77744265556ba1fcc39be66b07f019463826 | |
parent | 4cdb340062fdc80824a4fee04e83fe2969a0c4eb (diff) | |
parent | 622d18637f9d633b184e43fd3594b661cf4e9375 (diff) | |
download | Doxygen-37852281fca7e8080bd62dc702f2c6b2017e699e.zip Doxygen-37852281fca7e8080bd62dc702f2c6b2017e699e.tar.gz Doxygen-37852281fca7e8080bd62dc702f2c6b2017e699e.tar.bz2 |
Merge pull request #447 from albert-github/feature/bug_761007
Bug 761007 - Spaces between the closing bracket of the typename and the opening bracket of the parameter list cause detection issues.
-rw-r--r-- | src/scanner.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scanner.l b/src/scanner.l index ea7d7ef..9ccd628 100644 --- a/src/scanner.l +++ b/src/scanner.l @@ -4234,7 +4234,7 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP}) <FuncFuncType>. { current->type += *yytext; } -<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 if (current->type.left(7)=="typedef" && current->bodyLine==-1) // the bodyLine check is to prevent this guard to be true more than once { |