Hello
Should static_vector be of standard layout and/or trivially copyable?
depending on theĀ element type

I see this outputs false

std::cout << std::is_standard_layout_v<boost::container::static_vector<char,32>> << std::endl;
std::cout << std::is_trivially_copyable_v<boost::container::static_vector<char,32>> << std::endl;

Rds,