After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 733938 - Explicit links using operator()() not generated.
Explicit links using operator()() not generated.
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: general
1.8.7
Other Windows
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2014-07-29 22:18 UTC by Dennis Kennedy
Modified: 2014-08-21 17:15 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
testcase (222 bytes, text/plain)
2014-07-29 22:18 UTC, Dennis Kennedy
Details

Description Dennis Kennedy 2014-07-29 22:18:19 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[]();
};
Comment 1 Dennis Kennedy 2014-07-30 16:11:07 UTC
This appears to have broken between versions 1.8.5 and 1.8.6.
Comment 2 Dennis Kennedy 2014-08-01 21:20:14 UTC
In my settings file, I do have EXTRACT_PRIVATE = YES
Comment 3 Dimitri van Heesch 2014-08-03 18:15:24 UTC
Confirmed. Should be fixed in the next GIT update.
Comment 4 Dimitri van Heesch 2014-08-21 17:15:26 UTC
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).