File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
lib/node_modules/@stdlib/ndarray/base/iteration-order
include/stdlib/ndarray/base Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ extern "C" {
3131/**
3232* Determines array iteration order, given a stride array.
3333*/
34- int8_t stdlib_ndarray_iteration_order ( int64_t ndims , int64_t * strides );
34+ int8_t stdlib_ndarray_iteration_order ( const int64_t ndims , const int64_t * strides );
3535
3636#ifdef __cplusplus
3737}
Original file line number Diff line number Diff line change 4343* int8_t o = stdlib_ndarray_iteration_order( ndims, strides );
4444* // returns 1
4545*/
46- int8_t stdlib_ndarray_iteration_order ( int64_t ndims , int64_t * strides ) {
46+ int8_t stdlib_ndarray_iteration_order ( const int64_t ndims , const int64_t * strides ) {
4747 int64_t cnt ;
4848 int64_t i ;
4949
You can’t perform that action at this time.
0 commit comments