Parameter documentation for function has disappeared
X-Ryl669 opened this issue · 1 comments
X-Ryl669 commented
If you look into AudioBuffer.hpp
source, for the method play
there is:
/*!
* @brief Play this buffer
* @param manager Which manager to play the sound with
* @throw Exception If this buffer is already playing
*/
void play(AudioManager& manager) const;
Doxygen create a example with the parameter manager
which is documented. Yet, it's not in the generated markdown files (nor is the throw
information).
matusnovak commented
Hi @X-Ryl669
I have accidentally introduced this issue. At some point I have renamed the paramList
in the default templates by a mistake and it was no longer rendered.
I have fixed it in the new release releases/tag/v1.1.0.
Example screenshot from here:
Generated from the following source:
/*!
* @brief Play this buffer
* @param manager Which manager to play the sound with
* @throw Exception If this buffer is already playing
*/
void play(AudioManager& manager) const;