Skip to content

Commit 2e9ea06

Browse files
committed
fix: update signatures
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent f75dcc2 commit 2e9ea06

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/ndarray/base/unary-accumulate/src

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/ndarray/base/unary-accumulate/src/dispatch.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* @param fcn callback
4040
* @return status code
4141
*/
42-
static int8_t stdlib_ndarray_unary_accumulate_1d_squeeze( const ndarrayUnaryAccumulateFcn f, const struct ndarray *x1, const struct ndarray *x2, struct ndarray *x3, const int64_t i, void *fcn ) {
42+
static int8_t stdlib_ndarray_unary_accumulate_1d_squeeze( const ndarrayUnaryAccumulateFcn f, struct ndarray *x1, struct ndarray *x2, struct ndarray *x3, const int64_t i, void *fcn ) {
4343
int64_t sh[] = { stdlib_ndarray_shape( x1 )[ i ] };
4444

4545
// Shallow copy and reshape the array...
@@ -85,7 +85,7 @@ static int8_t stdlib_ndarray_unary_accumulate_1d_squeeze( const ndarrayUnaryAccu
8585
* @param fcn callback
8686
* @return status code
8787
*/
88-
static int8_t stdlib_ndarray_unary_accumulate_1d_flatten( const ndarrayUnaryAccumulateFcn f, const int64_t N, const struct ndarray *x1, const int64_t s1, const struct ndarray *x2, struct ndarray *x3, void *fcn ) {
88+
static int8_t stdlib_ndarray_unary_accumulate_1d_flatten( const ndarrayUnaryAccumulateFcn f, const int64_t N, struct ndarray *x1, const int64_t s1, struct ndarray *x2, struct ndarray *x3, void *fcn ) {
8989
// Define the (flattened) strided array shape:
9090
int64_t sh[] = { N };
9191

0 commit comments

Comments
 (0)