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
struct Tag{};
auto works = std::get<0>(std::make_tuple(std::make_tuple<Tag>({})));
auto failedToCompile = eastl::get<0>(eastl::make_tuple(eastl::make_tuple<Tag>({})));
Any Intreactions with eastl::make_tuple<Tag>({}) causes compilation errors: static_assert(I != I, "tuple_element index out of range");
The text was updated successfully, but these errors were encountered:
WTR:
Any Intreactions with
eastl::make_tuple<Tag>({})
causes compilation errors:static_assert(I != I, "tuple_element index out of range");
The text was updated successfully, but these errors were encountered: