Hello,

I'm using inline descriptions for function parameters/arguments but the
last parameter description goes to the function's description (to the right
function, to the end of description).

int a_function(
    int arg_1,       ///< first argument
    int arg_2);        ///< second argument

I see that the issue is that the the comment is after ); so the function
"parameter section" ended and when I use:

int a_function(
    int arg_1,       ///< first argument
    int arg_2        ///< second argument
    );

it works as expected, same for @param.

Is there a way how to use the coding style with ); on the same line as last
function parameter and at the same time use also the inline parameter
descriptions with Doxygen?

I'm using Doxygen 1.8.9.1 (with C code).

Thanks,
Vaclav
------------------------------------------------------------------------------
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to