Open dhebbeker opened 2 months ago
If bitset would have a size_type member type it would be compatible with etl::size()
bitset
size_type
etl::size()
This issue does not exists with std, as there std::size() uses auto as return type, which is not necessary available in environments deploying ETL.
std
std::size()
auto
If
bitset
would have asize_type
member type it would be compatible withetl::size()
This issue does not exists with
std
, as therestd::size()
usesauto
as return type, which is not necessary available in environments deploying ETL.