Skip to content

Commit 6e10866

Browse files
committed
Auto-generated commit
1 parent 65748bd commit 6e10866

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,23 @@
66

77
## Unreleased (2025-01-02)
88

9+
<section class="bug-fixes">
10+
11+
### Bug Fixes
12+
13+
- [`604d9b5`](https://github.com/stdlib-js/stdlib/commit/604d9b5a2c932d701b53cee0845c1309a0a2e1f9) - remove unused deps and fix indentation
14+
15+
</section>
16+
17+
<!-- /.bug-fixes -->
18+
919
<section class="commits">
1020

1121
### Commits
1222

1323
<details>
1424

25+
- [`604d9b5`](https://github.com/stdlib-js/stdlib/commit/604d9b5a2c932d701b53cee0845c1309a0a2e1f9) - **fix:** remove unused deps and fix indentation _(by Athan Reines)_
1526
- [`dbb2756`](https://github.com/stdlib-js/stdlib/commit/dbb27568ed7d5f00d6edc28f189bfd2d09af09ff) - **refactor:** update `stats/base/scumaxabs` native addon from C++ to C [(#4409)](https://github.com/stdlib-js/stdlib/pull/4409) _(by Vivek maurya)_
1627
- [`62364f6`](https://github.com/stdlib-js/stdlib/commit/62364f62ea823a3b52c2ad25660ecd80c71f8f36) - **style:** fix C comment alignment _(by Philipp Burckhardt)_
1728
- [`9e689ff`](https://github.com/stdlib-js/stdlib/commit/9e689ffcb7c6223afc521f1e574b42f10921cf5e) - **chore:** fix indentation in manifest.json files _(by Philipp Burckhardt)_

manifest.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,7 @@
4242
"@stdlib/napi-export",
4343
"@stdlib/napi-argv",
4444
"@stdlib/napi-argv-int64",
45-
"@stdlib/napi-argv-double",
46-
"@stdlib/napi-argv-strided-float32array",
47-
"@stdlib/napi-create-double"
45+
"@stdlib/napi-argv-strided-float32array"
4846
]
4947
},
5048
{

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,8 @@
4545
"@stdlib/math-base-assert-is-nanf": "^0.2.2",
4646
"@stdlib/math-base-special-abs": "^0.2.2",
4747
"@stdlib/napi-argv": "^0.2.2",
48-
"@stdlib/napi-argv-double": "^0.2.1",
4948
"@stdlib/napi-argv-int64": "^0.2.2",
5049
"@stdlib/napi-argv-strided-float32array": "^0.2.2",
51-
"@stdlib/napi-create-double": "^0.0.2",
5250
"@stdlib/napi-export": "^0.2.2",
5351
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.2",
5452
"@stdlib/utils-library-manifest": "^0.2.2",

src/addon.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@
2020
#include "stdlib/napi/export.h"
2121
#include "stdlib/napi/argv.h"
2222
#include "stdlib/napi/argv_int64.h"
23-
#include "stdlib/napi/argv_double.h"
2423
#include "stdlib/napi/argv_strided_float32array.h"
25-
#include "stdlib/napi/create_double.h"
2624
#include <node_api.h>
2725

2826
/**
@@ -39,7 +37,7 @@ static napi_value addon( napi_env env, napi_callback_info info ) {
3937
STDLIB_NAPI_ARGV_INT64( env, strideY, argv, 4 );
4038
STDLIB_NAPI_ARGV_STRIDED_FLOAT32ARRAY( env, X, N, strideX, argv, 1 );
4139
STDLIB_NAPI_ARGV_STRIDED_FLOAT32ARRAY( env, Y, N, strideY, argv, 3 );
42-
stdlib_strided_scumaxabs( N, X, strideX, Y, strideY );
40+
stdlib_strided_scumaxabs( N, X, strideX, Y, strideY );
4341
return NULL;
4442
}
4543

0 commit comments

Comments
 (0)