Skip to content
Snippets Groups Projects
Commit c2499405 authored by patavirt's avatar patavirt
Browse files

array: more checks

parent c214ae35
No related branches found
No related tags found
No related merge requests found
......@@ -89,6 +89,11 @@ public:
std::array<size_t, NDim> stride;
size_t offset;
#ifndef NO_BOUNDS_CHECK
if (end < begin || begin >= shape[axis] || end > shape[axis])
throw std::out_of_range("begin/end indices out of bounds");
#endif
offset = offset_ + stride_[axis] * begin;
for (size_t i = 0; i < NDim; ++i) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment