xoofx/CppAst.NET

Parsing comments on function parameters?

DiasFranciscoA opened this issue · 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*/) { }

Clang parses doxygen C++ style comments