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
might be a target for deprecation in 2.x.0 and removal in 3.0.0. It only works with compile-time constant fixed-length strings. When dealing with std::strings we now have better options, see #744. Since FixedLenStringArray can't avoid copies, one might as well copy into containers of std::strings. Or write from a raw pointer, if memory is already correctly arranged.
The text was updated successfully, but these errors were encountered:
1uc
added
the
v3
Anything that needs to be resolved before `v3`.
label
Dec 22, 2023
The
FixedLenStringArray
defined here:HighFive/include/highfive/H5DataType.hpp
Line 355 in 04ae650
might be a target for deprecation in 2.x.0 and removal in 3.0.0. It only works with compile-time constant fixed-length strings. When dealing with
std::string
s we now have better options, see #744. SinceFixedLenStringArray
can't avoid copies, one might as well copy into containers ofstd::string
s. Or write from a raw pointer, if memory is already correctly arranged.The text was updated successfully, but these errors were encountered: