Skip to content

Commit 2c1b0f0

Browse files
committed
Auto-generated commit
1 parent edae7f6 commit 2c1b0f0

6 files changed

Lines changed: 11 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -963,6 +963,7 @@ A total of 50 issues were closed in this release:
963963

964964
<details>
965965

966+
- [`510d710`](https://github.com/stdlib-js/stdlib/commit/510d7100ba882850675520a6fe8be6219fb05076) - **docs:** propagate recent develop fixes to sibling packages [(#12400)](https://github.com/stdlib-js/stdlib/pull/12400) _(by Philipp Burckhardt)_
966967
- [`9d35248`](https://github.com/stdlib-js/stdlib/commit/9d3524866ec6833c164e5f56bc6197d63faafb48) - **docs:** update related packages sections [(#12386)](https://github.com/stdlib-js/stdlib/pull/12386) _(by stdlib-bot)_
967968
- [`ece1cb0`](https://github.com/stdlib-js/stdlib/commit/ece1cb034f55713dfc2c677e7a8fb091e090f099) - **docs:** update related packages sections [(#12326)](https://github.com/stdlib-js/stdlib/pull/12326) _(by stdlib-bot)_
968969
- [`8ff59d6`](https://github.com/stdlib-js/stdlib/commit/8ff59d63eaa88d252f5404e3b3affdf5c66821d5) - **chore:** propagate `blas/*` JSDoc and `cscal` header fixes to siblings [(#12318)](https://github.com/stdlib-js/stdlib/pull/12318) _(by Philipp Burckhardt)_

base/flatten-shape-from/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,8 @@ logEachMap( 'shape: (%s). dim: %d. flattened: (%s).', shapes, dims, flattenShape
149149
Flattens a shape starting from a specified dimension.
150150

151151
```c
152+
#include <stdint.h>
153+
152154
const int64_t ndims = 3;
153155
const int64_t shape[] = { 2, 3, 10 };
154156
int64_t out[ 2 ];

base/flatten-shape/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,8 @@ logEachMap( 'shape: (%s). depth: %d. flattened: (%s).', shapes, depths, flattenS
149149
Flattens a shape to a specified depth.
150150

151151
```c
152+
#include <stdint.h>
153+
152154
const int64_t ndims = 3;
153155
const int64_t shape[] = { 2, 3, 10 };
154156
int64_t out[ 1 ];

base/minmax-view-buffer-index/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,8 @@ for ( i = 0; i < 100; i++ ) {
170170
Computes the minimum and maximum linear indices (in bytes) in an underlying data buffer accessible to an array view.
171171

172172
```c
173+
#include <stdint.h>
174+
173175
int64_t ndims = 2;
174176
int64_t shape[] = { 10, 10 };
175177
int64_t strides[] = { 10, 1 };

base/nonsingleton-dimensions/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,8 @@ for ( i = 0; i < 100; i++ ) {
126126
Returns the number of non-singleton dimensions.
127127

128128
```c
129+
#include <stdint.h>
130+
129131
int64_t ndims = 2;
130132
int64_t shape[] = { 10, 1 };
131133

base/singleton-dimensions/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,8 @@ for ( i = 0; i < 100; i++ ) {
126126
Returns the number of singleton dimensions.
127127

128128
```c
129+
#include <stdint.h>
130+
129131
int64_t ndims = 2;
130132
int64_t shape[] = { 10, 1 };
131133

0 commit comments

Comments
 (0)