You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
breaks (at least with 0.9.2 - skipped the versions inbetween because of #274)
result of test
Expected equality of these values:
std::string(magic_enum::enum_type_name<test_enum>())
Which is: "scoped_enum_test_enum_type_name_Test_Test::TestBody::test_enum"
"test_enum"
The text was updated successfully, but these errors were encountered:
the Version 0.9.2 breaks our code (like #274)
but not when using enum_name but when using enum_type_name
(tested with MSVC 19 - Windows)
runs with 0.8.2
TEST(scoped_enum_test, enum_type_name_Test)
{
enum class test_enum
{
first,
second,
third
};
}
breaks (at least with 0.9.2 - skipped the versions inbetween because of #274)
result of test
Expected equality of these values:
std::string(magic_enum::enum_type_name<test_enum>())
Which is: "scoped_enum_test_enum_type_name_Test_Test::TestBody::test_enum"
"test_enum"
The text was updated successfully, but these errors were encountered: