@@ -, +, @@ --- include/vigra/numpy_array.hxx | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- a/include/vigra/numpy_array.hxx +++ a/include/vigra/numpy_array.hxx @@ -1074,7 +1074,7 @@ void NumpyArray::setupArrayView() this->m_stride /= sizeof(value_type); this->m_ptr = reinterpret_cast(pyArray()->data); - vigra_precondition(checkInnerStride(Stride()), + vigra_precondition(this->checkInnerStride(Stride()), "NumpyArray<..., UnstridedArrayTag>::setupArrayView(): First dimension of given array is not unstrided (should never happen)."); } --