Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 420635
Collapse All | Expand All

(-)a/include/vigra/numpy_array.hxx (-2 / +1 lines)
Lines 1074-1080 void NumpyArray<N, T, Stride>::setupArrayView() Link Here
1074
1074
1075
        this->m_stride /= sizeof(value_type);
1075
        this->m_stride /= sizeof(value_type);
1076
        this->m_ptr = reinterpret_cast<pointer>(pyArray()->data);
1076
        this->m_ptr = reinterpret_cast<pointer>(pyArray()->data);
1077
        vigra_precondition(checkInnerStride(Stride()),
1077
        vigra_precondition(this->checkInnerStride(Stride()),
1078
            "NumpyArray<..., UnstridedArrayTag>::setupArrayView(): First dimension of given array is not unstrided (should never happen).");
1078
            "NumpyArray<..., UnstridedArrayTag>::setupArrayView(): First dimension of given array is not unstrided (should never happen).");
1079
1079
1080
    }
1080
    }
1081
- 

Return to bug 420635