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
When trying to use fixed_capacity_vector in a constexpr function in C++20. The compilation failed because fixed_capacity_vector is not a literal type because it is missing a constexpr destructor.
After marking the existing destructors constexpr and adding copnstexpr ~type_name() = default;
to several types, the issue was solved.
Is there any chances to get those changes in the main branch?
The text was updated successfully, but these errors were encountered:
When trying to use fixed_capacity_vector in a constexpr function in C++20. The compilation failed because fixed_capacity_vector is not a literal type because it is missing a constexpr destructor.
After marking the existing destructors constexpr and adding
copnstexpr ~type_name() = default;
to several types, the issue was solved.
Is there any chances to get those changes in the main branch?
The text was updated successfully, but these errors were encountered: