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
jfyi constexpr int Array[] = {1, 2}; produces compillation error error: array index 3 is past the end of the array (that has type 'const int[2]') [-Werror,-Warray-bounds] as expected.