-
-
Notifications
You must be signed in to change notification settings - Fork 209
Open
Description
Steps to reproduce
- Follow Sy Brand's tutorial for setting up Breathe.
- Add the following to
CatCutifier.h
/**
A fluffy feline
*/
struct cat {
/**
Make this cat look super cute
*/
void make_cute();
/// some docs
constexpr friend bool operator==(cat const x, int const y)
{
return true;
}
};Expected output
constexpr friend bool operator==(cat const x, int const y)
some docs
Actual output
inline friend constexpr friend bool operator== (cat const x, int const y)
some docs
inline should not be present at all, and friend should only appear once.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels