Open DiasFranciscoA opened 10 months ago
I can see that the parameters for functions have a comment field but it seems to always be null? 🤔 Is there a way for them to be parsed and how should the comments be placed?
I tried:
double my_func(double /*comments*/ myParam) { }
double my_func( /*comments*/ double myParam) { }
double my_func(double myParam /*comments*/) { }
Clang parses doxygen C++ style comments
I can see that the parameters for functions have a comment field but it seems to always be null? 🤔 Is there a way for them to be parsed and how should the comments be placed?
I tried: