remove some code that has been already commented out
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
8a0fdf7a7c
commit
b20de211ef
2 changed files with 1 additions and 3 deletions
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue