CppAst.NET icon indicating copy to clipboard operation
CppAst.NET copied to clipboard

Parsing comments on function parameters?

Open DiasFranciscoA opened this issue 1 year ago • 1 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:

double my_func(double /*comments*/ myParam) { }
double my_func( /*comments*/ double myParam) { }
double my_func(double myParam /*comments*/) { }

DiasFranciscoA avatar Dec 12 '23 02:12 DiasFranciscoA

Clang parses doxygen C++ style comments

xoofx avatar Jan 18 '24 07:01 xoofx