Open maehw opened 1 year ago
Where (if at all) can I exclude the check for #includes, usings and probably other keywords/expressions/statements?
It should not mark those lines. It should only mark the constructs which are also listed in the summary table (classes, defines etc.). I don't really understand what's going on there. Maybe you can check the .xml files generated by Doxygen and check if you find those two lines mentioned in of the .xml files. This might then give an insight what is going on.
What needs to be done to get this detailed summary?
You need to run coverxygen
with the --format summary
parameter.
Can you also check if all parameters of a function/method have been commented?
Not yet. See #29
Hi all!
Thanks to the doxy-coverage and coverxygen project members for all the time & effort that has been put into the projects.
I am currently evaluating the use of coverxygen - working with a C/C++ code base.
I hade some starting difficulties, so I am currently playing around with a reduced code sample. It basically seems to work.
My flow:
Undocumented functions are detected as expected.
Before:
After:
Where (if at all) can I exclude the check for
#include
s,using
s and probably other keywords/expressions/statements?Your README.md shows the following example:
What needs to be done to get this detailed summary?
Can you also check if all parameters of a function/method have been commented?
Any help is very much appreciated.