-
Notifications
You must be signed in to change notification settings - Fork 506
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Suppose I have
class foo {
public:
enum Nums {
ZERO,
ONE,
TWO
};
};
In versions of magic_enum
prior to the latest push (e.g., commit 5367f51
), enum_names<foo::Nums>
would return:
"ZERO"
"ONE"
"TWO"
It appears that now it returns:
"foo::ZERO"
"foo::ONE"
"foo::TWO"
This breaks my code. (I am using XCode 14.2 on macOS 12.6.5.) If the new behavior is by design, it would be very helpful to have an option to disable it.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working