$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: MM (finjulhich_at_[hidden])
Date: 2022-03-15 11:30:23
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,