remove some code that has been already commented out
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Christian Zimmermann 2024-02-03 23:35:29 +01:00
parent 8a0fdf7a7c
commit b20de211ef
2 changed files with 1 additions and 3 deletions

View File

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

View File

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