GNOME Bugzilla – Bug 733938
Explicit links using operator()() not generated.
Last modified: 2014-08-21 17:15:26 UTC
Created attachment 281980 [details] testcase When I use #operator()() I get a warning: testcase.h:3: warning: explicit link request to 'operator()()' could not be resolved and no link is produced in the html. But, if I use #operator[](), I get no warning and I get a link in the html. /** * Test Class B * Use #operator()() * or use #operator[]() */ class B { /** * Returns a char */ char operator()(); /** * Returns a char */ char operator[](); };
This appears to have broken between versions 1.8.5 and 1.8.6.
In my settings file, I do have EXTRACT_PRIVATE = YES
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.8. 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 (preferrably in the form of a self-contained example).