Skip to content

Commit 4cb91e6

Browse files
committed
Auto-generated commit
1 parent 7e132dc commit 4cb91e6

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-09-29)
7+
## Unreleased (2024-10-03)
88

99
<section class="packages">
1010

@@ -321,6 +321,7 @@ A total of 3 people contributed to this release. Thank you to the following cont
321321

322322
<details>
323323

324+
- [`99cca3d`](https://github.com/stdlib-js/stdlib/commit/99cca3dc8a07ef39b9821468b8a0f7a4d6cacf72) - **chore:** declare parameter as const array _(by Philipp Burckhardt)_
324325
- [`2c4e5d8`](https://github.com/stdlib-js/stdlib/commit/2c4e5d824e0c5dc8fd536bf79ff565cee100ce46) - **build:** disable additional lint rule in TS tests _(by Philipp Burckhardt)_
325326
- [`abf0407`](https://github.com/stdlib-js/stdlib/commit/abf040787f6598438b0100a729a8331b7f80f62f) - **chore:** resolve lint errors in TS files _(by Philipp Burckhardt)_
326327
- [`7f368f6`](https://github.com/stdlib-js/stdlib/commit/7f368f6c3f4cea444a304a62616cea36a5f143eb) - **fix:** remove unused imports from TS declaration file _(by Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Contributors listed in alphabetical order.
44

5-
Aayush Khanna <[email protected].com>
5+
Aayush Khanna <aayushiitbhu23@gmail.com>
66
Adarsh Palaskar <[email protected]>
77
Aditya Sapra <[email protected]>
88
AgPriyanshu18 <[email protected]>

base/broadcast-shapes/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ The function accepts the following arguments:
311311
- **out**: `[out] int64_t*` output shape array.
312312

313313
```c
314-
int8_t stdlib_ndarray_broadcast_shapes( int64_t M, int64_t *shapes[], int64_t ndims[], int64_t *out );
314+
int8_t stdlib_ndarray_broadcast_shapes( int64_t M, int64_t *shapes[], const int64_t ndims[], int64_t *out );
315315
```
316316
317317
If successful, the function returns `0`; otherwise, the function returns `-1` (e.g., due to incompatible shapes).

base/broadcast-shapes/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
* int64_t out[] = { 0, 0, 0, 0 };
5656
* int8_t status = stdlib_ndarray_broadcast_shapes( 2, shapes, ndims, out );
5757
*/
58-
int8_t stdlib_ndarray_broadcast_shapes( int64_t M, int64_t *shapes[], int64_t ndims[], int64_t *out ) {
58+
int8_t stdlib_ndarray_broadcast_shapes( int64_t M, int64_t *shapes[], const int64_t ndims[], int64_t *out ) {
5959
int64_t dim;
6060
int64_t *sh;
6161
int64_t n1;

0 commit comments

Comments
 (0)