diff options
author | Fabio Utzig <fabio.utzig@nordicsemi.no> | 2020-12-17 15:51:35 (GMT) |
---|---|---|
committer | Fabio Utzig <fabio.utzig@nordicsemi.no> | 2020-12-17 15:51:35 (GMT) |
commit | d34236ba40379847ad4ee3140366bee37b652615 (patch) | |
tree | 3301ba7d9fa1b3c50ed0a9509b544ef0e8443880 /src/doxygen.cpp | |
parent | 736557cabb38a37f12cb630adca9ef693646a980 (diff) | |
download | Doxygen-d34236ba40379847ad4ee3140366bee37b652615.zip Doxygen-d34236ba40379847ad4ee3140366bee37b652615.tar.gz Doxygen-d34236ba40379847ad4ee3140366bee37b652615.tar.bz2 |
Add param validation to typedef function pointers
Currently typedef'd function pointers, typically used as callbacks,
don't have their `@param` documentation properly validated. This commit
adds a proper check by initializing their memberdef with the parsed
args. To avoid duplicating the params in the output, since typedef's
already have the params in their definition, an extra check was added.
Signed-off-by: Fabio Utzig <fabio.utzig@nordicsemi.no>
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index e246628..e2ab088 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -2351,7 +2351,7 @@ static MemberDef *addVariableToFile( type,name,args,0, root->protection, Normal,root->stat,Member, mtype,!root->tArgLists.empty() ? root->tArgLists.back() : ArgumentList(), - ArgumentList(), root->metaData) }; + root->argList, root->metaData) }; md->setTagInfo(root->tagInfo()); md->setMemberSpecifiers(root->spec); md->setDocumentation(root->doc,root->docFile,root->docLine); |