GNOME Bugzilla – Bug 755939
Warning refers to incorrect line for undocumented member function (C++)
Last modified: 2016-01-12 11:47:06 UTC
When warning about undocumented member functions, the reported line number is that of the class, not the undocumented member function. For example, when generating docs for the following class: /** A small man */ struct miniman { // <--------- line 3 /// Here's some documentation void doc(); void undoc(); // <--------- line 7 }; I get the following warning: /tmp/miniman.h:3: warning: Member undoc() (function) of class miniman is not documented. The line number should be that of the undocumented member, i.e. line 7 $ doxygen --version 1.8.11
Note: works correctly with 1.8.9.1
Confirmed. Should be fixed in the next GIT update.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.11. Please verify if this is indeed the case. Reopen the bug if you think it is not fixed and please include any additional information that you think can be relevant (preferably in the form of a self-contained example).
Verified with 1.8.11 release.