For a function definition like:
TYPE function_name (TYPE arg)
the auto comment of Doxbar V0.38 doesn't use the
function template. When I delete the space character
between the function name and "(" it works fine.
This issue is already described in the closed request
ID 844332.
Comment from Oliver about this issue:
That is indeed by design, as the FunctionExp regular
expression does not expect any space between the name
and the opening parenthesis.
To change this, right before the \\( for the opening
parenthesis, add [[:space:]]* and that should fix it.