dev #3

Merged
chizeta merged 9 commits from dev into main 2024-02-04 00:49:58 +01:00
2 changed files with 1 additions and 3 deletions
Showing only changes of commit b20de211ef - Show all commits

View file

@ -181,7 +181,6 @@ namespace CNORXZ
typename CArrayBase<T>::const_iterator CArrayBase<T>::itLexSave(const Acc& acc) const typename CArrayBase<T>::const_iterator CArrayBase<T>::itLexSave(const Acc& acc) const
{ {
CXZ_ASSERT(acc.lex() < this->size(), "index out of range"); CXZ_ASSERT(acc.lex() < this->size(), "index out of range");
//CXZ_ASSERT(false, "IMPLEMENT CHECKS!!");
// check further compatibility of index/range format!!! // check further compatibility of index/range format!!!
return begin() + acc.lex(); return begin() + acc.lex();
} }
@ -374,7 +373,6 @@ namespace CNORXZ
typename ArrayBase<T>::iterator ArrayBase<T>::itLexSave(const Acc& acc) typename ArrayBase<T>::iterator ArrayBase<T>::itLexSave(const Acc& acc)
{ {
CXZ_ASSERT(acc.lex() < this->size(), "index out of range"); CXZ_ASSERT(acc.lex() < this->size(), "index out of range");
//CXZ_ASSERT(false, "IMPLEMENT CHECKS!!");
// check further compatibility of index/range format!!! // check further compatibility of index/range format!!!
return begin() + acc.lex(); return begin() + acc.lex();
} }

View file

@ -34,7 +34,7 @@ namespace CNORXZ
H5Sclose(memspace); H5Sclose(memspace);
} }
else { else {
CXZ_ERROR("IMPLEMENT!!!"); CXZ_ERROR("Got array type with non-trivial format; non-contiguous data formats are not supported yet!");
} }
return *this; return *this;
} }