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
enum E
{
e1, e2
};
int main()
{
constexpr auto m = meta::members_of( ^E );
template for (constexpr auto x: m) {
char const * name = meta::name_of( x );
}
}
However, we do not setup an immediate invocation correctly for the meta::name_of call. This results in an incorrect diagnostic.
The text was updated successfully, but these errors were encountered:
The following should be valid:
However, we do not setup an immediate invocation correctly for the
meta::name_of
call. This results in an incorrect diagnostic.The text was updated successfully, but these errors were encountered: