Skip to content

Commit 1a6cd56

Browse files
committed
Auto-generated commit
1 parent 55077bd commit 1a6cd56

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ This release closes the following issue:
2424

2525
<details>
2626

27+
- [`b562cf6`](https://github.com/stdlib-js/stdlib/commit/b562cf6a430608fc5c7bc3f1cf1eead7c982b659) - **test:** update function signatures [(#5110)](https://github.com/stdlib-js/stdlib/pull/5110) _(by Aayush Khanna)_
2728
- [`f6682eb`](https://github.com/stdlib-js/stdlib/commit/f6682ebd521481cf1c77c3cee2b279b8c19dc264) - **chore:** fix C linting errors in `math/base/ops/imuldw` [(#5107)](https://github.com/stdlib-js/stdlib/pull/5107) _(by Aayush Khanna)_
2829
- [`4a70790`](https://github.com/stdlib-js/stdlib/commit/4a707903dfef7c2b56216000165706497d19a251) - **style:** add missing spaces _(by Philipp Burckhardt)_
2930
- [`90e96d0`](https://github.com/stdlib-js/stdlib/commit/90e96d01b7a32ec3b71caf3e5f57528338199a8f) - **chore:** minor clean-up _(by Philipp Burckhardt)_

test/fixtures/c/runner.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ void rand_array_ui32( unsigned int *out, const unsigned int len, const unsigned
140140
* @param x input array
141141
* @param len array length
142142
*/
143-
void ui32_to_f64( double *out, unsigned const int *x, unsigned int len ) {
143+
void ui32_to_f64( double *out, const unsigned int *x, unsigned int len ) {
144144
unsigned int i;
145145

146146
for ( i = 0; i < len; i++ ) {
@@ -334,7 +334,7 @@ void muldws1( int *w, const int u, const int v ) {
334334
* @param len number of values in the domain
335335
* @param name output filename
336336
*/
337-
void generate( unsigned const int *a, unsigned const int *b, const unsigned int len, const char *name ) {
337+
void generate( const unsigned int *a, const unsigned int *b, const unsigned int len, const char *name ) {
338338
unsigned int i;
339339
unsigned int *y;
340340
FILE *f;

0 commit comments

Comments
 (0)