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,
_______________________________________________
Boost-users mailing list
Boost-users@lists.boost.org
https://lists.boost.org/mailman/listinfo.cgi/boost-users

Reply via email to