made all the string datatype size to 1024. was using size 256 even for sizes that could be longer

This commit is contained in:
2025-06-13 14:23:15 +02:00
parent f4219ac879
commit 7c232cbd48
2 changed files with 31 additions and 31 deletions

View File

@ -151,7 +151,13 @@ class MasterAttributes {
rapidjson::PrettyWriter<rapidjson::StringBuffer> *w);
#ifdef HDF5C
void WriteXilinxCtbHDF5Attributes(H5::H5File *fd, H5::Group *group);
#endif
private:
#ifdef HDF5C
static const int HSTR_LEN = 1024;
#endif
};
} // namespace sls