A follow-up question to:
What's the right way to reference a parameter in Doxygen?
So, for parameters, we use @param
@param my_param the quick brown fox takes this parameter over the lazy dog
and then we can refer to it using @p
:
@param my_other_param this is completely different from @p my_param , you know!
Now, for template parameters, I would replace @param
with @tparam
. What should replace the @p
?