Skip to content
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

typedef warning when "using" some operator functions (Origin: bugzilla #700709) #5187

Closed
doxygen opened this issue Jul 2, 2018 · 0 comments

Comments

@doxygen
Copy link
Owner

doxygen commented Jul 2, 2018

status RESOLVED severity trivial in component documentation for ---
Reported in version 1.8.4 on platform Other
Assigned to: Dimitri van Heesch

Original attachment names and IDs:

On 2013-05-20 12:41:34 +0000, geoff@telesiscomputing.com.au wrote:

Created attachment 244768
Example header and settings.

I have something like the following (slightly odd, but legitimate C++11 (according to gcc at least) and the reason for it is more apparent in the full code):

/! \brief This class is documented./
class ABaseClass {
public:
bool operator==(const ABaseClass& arhs) const noexcept;
bool operator!=(const ABaseClass& arhs) const noexcept;
bool operator<(const ABaseClass& arhs) const noexcept;
bool operator<=(const ABaseClass& arhs) const noexcept;
bool operator>(const ABaseClass& arhs) const noexcept;
bool operator>=(const ABaseClass& arhs) const noexcept;
};

/! \brief This class is documented./
class ADerivedClass : public ABaseClass {
public:
using ABaseClass::operator==;
using ABaseClass::operator!=;
using ABaseClass::operator<;
using ABaseClass::operator<=;
using ABaseClass::operator>;
using ABaseClass::operator>=;
};

Doygen gives the following warnings:

demodox.hpp:21: Warning: documented symbol typedef ADerivedClass::ABaseClass::operator' was not declared or defined. demodox.hpp:22: Warning: documented symbol typedef ADerivedClass::ABaseClass::operator' was not declared or defined.
demodox.hpp:24: Warning: documented symbol typedef ADerivedClass::ABaseClass::operator' was not declared or defined. demodox.hpp:26: Warning: documented symbol typedef ADerivedClass::ABaseClass::operator' was not declared or defined.

Notice that it complains about only four of the six using statements (==, !=, <=, >=). It causes no actual problems that I can see, just the unwanted warnings.

Example header and settings file in attachment. Settings use EXTRACT_ALL=YES to avoid having to add unnecessary documentation to the example).

On 2013-05-20 17:54:33 +0000, Dimitri van Heesch wrote:

Confirmed. Should be fixed in the next GIT update.

On 2013-08-23 15:04:42 +0000, Dimitri van Heesch wrote:

This bug was previously marked ASSIGNED, which means it should be fixed in
doxygen version 1.8.5. 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.

@doxygen doxygen closed this as completed Jul 2, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant