You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ptrdiff_t should be std::ptrdiff_t or using std::ptrdiff_t should be used.
When defining bounds_type in array_view and strided_array_view I believe you need to specify av::bounds<Rank> because you also define a member function bounds and the compiler doesn't work it out correctly.
The text was updated successfully, but these errors were encountered:
There are two issues:
ptrdiff_t
should bestd::ptrdiff_t
orusing std::ptrdiff_t
should be used.bounds_type
inarray_view
andstrided_array_view
I believe you need to specifyav::bounds<Rank>
because you also define a member functionbounds
and the compiler doesn't work it out correctly.The text was updated successfully, but these errors were encountered: