I'm using doxygen for generating HTML documentation of a C++ code. Unfortunately doxygen doesn't show undocumented method parameters in the method description. For example, with the following
/**
* Some method
* @param p1 Some param
*/
void method(const std::string& p1, const std::string& p2);
the method description will show the comment and the parameter p1 but not p2.
How can I configure doxygen to list all parameters in the method description even if not explicitly documented?
p2appears in the method signature in the doxygen documentation, is this not sufficient? If you want it to also appear in the list of parameters I think you will have to document it (you could leave the documentation blank, e.g. use just\param p2). - Chris