Skip to content

Commit 8db8fb2

Browse files
authored
refactor: add const qualifiers
Signed-off-by: Athan <[email protected]>
1 parent f7bbb80 commit 8db8fb2

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/ndarray/base/minmax-view-buffer-index/src

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/ndarray/base/minmax-view-buffer-index/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
* int64_t max = out[ 1 ];
4848
* // returns 99
4949
*/
50-
int8_t stdlib_ndarray_minmax_view_buffer_index( int64_t ndims, const int64_t *shape, const int64_t *strides, int64_t offset, int64_t *out ) {
50+
int8_t stdlib_ndarray_minmax_view_buffer_index( const int64_t ndims, const int64_t *shape, const int64_t *strides, const int64_t offset, int64_t *out ) {
5151
int64_t min;
5252
int64_t max;
5353
int64_t s;

0 commit comments

Comments
 (0)