New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing parameter in C++ methods #8620
Comments
I'm not sure whether the The fact that the parameter is missing in the detailed description is, as far as I can see, the result from the fact that the scope of using is not taken into account in the (function
for both @doxygen how to handle? |
In the example the |
Look like a copy'n'paste mistake where the template argument list was assigned instead of the method's argument list |
From my tests it looks like the problem has been solved. |
Indeed I see this is a new behaviour. The "Member function Documentation" is generated only if the help of the function contains more than just a "\brief" (or equivalent) . With the following code:
I get: Which is now correct. We can see the correct parameters' list. |
@couet Alternatively, you can enable |
This issue was previously marked 'fixed but not released', |
Describe the bug
In our project we have code structures similar to:
File
AB.cxx
:The following screenshot is what I get for "class B" . As you can see the parameter for
method1
defined inclass A
is missing in the detailed documentation.Expected behavior
We would like to see the parameter for
method1()
in the class B detailed documentation.Screenshots
Version
1.9.0 and 1.9.2
The text was updated successfully, but these errors were encountered: