Skip to content

Commit 612286d

Browse files
committed
chore: fix C lint errors (issue #11462)
1 parent b3fd82a commit 612286d

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

  • lib/node_modules/@stdlib/strided/common/include/stdlib/strided/common

lib/node_modules/@stdlib/strided/common/include/stdlib/strided/common/quinary.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,47 +34,47 @@ extern "C" {
3434
/**
3535
* Applies a quinary callback returning double-precision floating-point numbers and assigns results to elements in a strided output array.
3636
*/
37-
void stdlib_strided_ddddd_d( uint8_t *arrays[], int64_t *shape, int64_t *strides, void *fcn );
37+
void stdlib_strided_ddddd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn );
3838

3939
/**
4040
* Applies a quinary callback returning single-precision floating-point numbers and assigns results to elements in a strided output array.
4141
*/
42-
void stdlib_strided_fffff_f( uint8_t *arrays[], int64_t *shape, int64_t *strides, void *fcn );
42+
void stdlib_strided_fffff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn );
4343

4444
/**
4545
* Applies a quinary callback returning double-precision floating-point numbers, casts results to single-precision floating-point format, and assigns results to elements in a strided output array.
4646
*/
47-
void stdlib_strided_fffff_f_as_ddddd_d( uint8_t *arrays[], int64_t *shape, int64_t *strides, void *fcn );
47+
void stdlib_strided_fffff_f_as_ddddd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn );
4848

4949
/**
5050
* Applies a quinary callback returning unsigned 32-bit integers and assigns results to elements in a strided output array.
5151
*/
52-
void stdlib_strided_IIIII_I( uint8_t *arrays[], int64_t *shape, int64_t *strides, void *fcn );
52+
void stdlib_strided_IIIII_I( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn );
5353

5454
/**
5555
* Applies a quinary callback returning signed 32-bit integers and assigns results to elements in a strided output array.
5656
*/
57-
void stdlib_strided_iiiii_i( uint8_t *arrays[], int64_t *shape, int64_t *strides, void *fcn );
57+
void stdlib_strided_iiiii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn );
5858

5959
/**
6060
* Applies a quinary callback returning unsigned 16-bit integers and assigns results to elements in a strided output array.
6161
*/
62-
void stdlib_strided_HHHHH_H( uint8_t *arrays[], int64_t *shape, int64_t *strides, void *fcn );
62+
void stdlib_strided_HHHHH_H( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn );
6363

6464
/**
6565
* Applies a quinary callback returning signed 16-bit integers and assigns results to elements in a strided output array.
6666
*/
67-
void stdlib_strided_hhhhh_h( uint8_t *arrays[], int64_t *shape, int64_t *strides, void *fcn );
67+
void stdlib_strided_hhhhh_h( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn );
6868

6969
/**
7070
* Applies a quinary callback returning unsigned 8-bit integers and assigns results to elements in a strided output array.
7171
*/
72-
void stdlib_strided_BBBBB_B( uint8_t *arrays[], int64_t *shape, int64_t *strides, void *fcn );
72+
void stdlib_strided_BBBBB_B( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn );
7373

7474
/**
7575
* Applies a quinary callback returning signed 8-bit integers and assigns results to elements in a strided output array.
7676
*/
77-
void stdlib_strided_bbbbb_b( uint8_t *arrays[], int64_t *shape, int64_t *strides, void *fcn );
77+
void stdlib_strided_bbbbb_b( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn );
7878

7979
#ifdef __cplusplus
8080
}

0 commit comments

Comments
 (0)