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
Compiler: gcc13.1, Linux
Boost 1.84
Godbolt: https://godbolt.org/z/xxT1Tsoe7
Description: when names_as_array is called on a struct with no fields, std::array<std::nullptr_t, N> is returned, rather than std::array<std::string_view, 0>. This makes generic code more difficult.
Compiler: gcc13.1, Linux
Boost 1.84
Godbolt: https://godbolt.org/z/xxT1Tsoe7
Description: when
names_as_array
is called on a struct with no fields,std::array<std::nullptr_t, N>
is returned, rather thanstd::array<std::string_view, 0>
. This makes generic code more difficult.The text was updated successfully, but these errors were encountered: