has anyone found a way to document the default values assigned to class members in a C++ initializer list? I have not managed to do this, but it seems like something that would be useful to have in my documentation.
Thanks.
Ringo
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
has anyone found a way to document the default values assigned to class members in a C++ initializer list? I have not managed to do this, but it seems like something that would be useful to have in my documentation.
Thanks.
Ringo
I too have wanted to do this, but have resorted to
\param i count of thingys (default = 1).
\tparam T floating-point type (default = double).
which seems OK, but isn't automated to docs and code will eventually inevitably get out of sync :-(