views:

348

answers:

1

I'm using Doxygen to generate documentation for my (C++) code, and am wondering if there is a tool that would give me a list of all functions/methods for which the current Doxygen markup doesn't describe all the arguments (or describes too many)? Maybe this is already included in Doxygen? (in which case I couldn't find the feature !)

+5  A: 

Doxygen will produce warnings for undocumented classes, methods, and arguments if the WARNINGS option is set to YES, but only if EXTRACT_ALL is NO.

ChrisN