Please provide an answer to my previous question. If I don't
get one in the next two weeks, I'll close this bug report as
I can't decide if it is a real bug from your description.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
changes in TemplateParamExp to make it work
Logged In: YES
user_id=656908
I don't understand what your problem is.
Could you give a code example with the output you get and
the output you think is correct.
Logged In: YES
user_id=656908
Please provide an answer to my previous question. If I don't
get one in the next two weeks, I'll close this bug report as
I can't decide if it is a real bug from your description.
Logged In: YES
user_id=279822
The Auto Comment feature has a problem with interpreting the
param tag with C++-style comments (//!) in front of this tag.
-function:
bool Function(int foo_0, bool foo_1, double foo_2);
-template:
//!
//!
//! \param[in,out] %PARAMNAME% %PARAMTYPE% %PARAMDEFAULT%
//!
//! \return %FUNCTIONTYPE%
//!
//! \sa
-correct output (with updated TemplateParamExp included in
the the txt-file):
//!
//!
//! \param[in,out] foo_0 int
//! \param[in,out] foo_1 bool
//! \param[in,out] foo_2 double
//!
//! \return bool
//!
//! \sa
-wrong (orginal doxbar 0.38) output:
//!
//!
//! \param[in,out] %PARAMNAME% %PARAMTYPE% %PARAMDEFAULT%
//!
//! \return bool
//!
//! \sa