Doxygen and C ++ 11 return type

Doxygen 1.8.2 release changelog says support has been added to C ++ 11 return return types. However, parsing my codes with Doxygen version 1.8.4 causes the return type to be auto rather than the return type.

Is there any parameter that needs to be configured for proper operation?

Edit:

The figure below shows that the return types are auto , which I believe is not consistent with the correct behavior.

enter image description here

+7
c ++ c ++ 11 trailing-return-type doxygen return-type-deduction
source share

No one has answered this question yet.

See related questions:

1783
C ++ 11 introduced a standardized memory model. What does it mean? And how will this affect C ++ programming?
1391
What is a lambda expression in C ++ 11?
787
What is the difference between "typedef" and "use" in C ++ 11?
603
What does T && (double ampersand) mean in C ++ 11?
thirteen
Why were return-return types added in C ++ 11?
8
Is this final return type legal in C ++ 11?
6
Using this and attributes in return types of member function returns?
2
Why is Doxygen reporting this method as an attribute?
0
Doxygen parse const member does not work correctly if const is on another line
0
doxygen AUTOLINK_SUPPORT and sa

All Articles