Skip to content

Commit df9d1d6

Browse files
fix: CI errors
1 parent 3d2bc14 commit df9d1d6

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

lib/node_modules/@stdlib/math/base/special/log10f/manifest.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
"dependencies": [
3939
"@stdlib/math/base/napi/unary",
4040
"@stdlib/constants/float32/ninf",
41-
"@stdlib/number/float64/base/to-float32",
4241
"@stdlib/number/float32/base/to-word",
4342
"@stdlib/number/float32/base/from-word",
4443
"@stdlib/constants/float32/exponent-bias",
@@ -60,7 +59,6 @@
6059
"libpath": [],
6160
"dependencies": [
6261
"@stdlib/constants/float32/ninf",
63-
"@stdlib/number/float64/base/to-float32",
6462
"@stdlib/number/float32/base/to-word",
6563
"@stdlib/number/float32/base/from-word",
6664
"@stdlib/constants/float32/exponent-bias",
@@ -82,7 +80,6 @@
8280
"libpath": [],
8381
"dependencies": [
8482
"@stdlib/constants/float32/ninf",
85-
"@stdlib/number/float64/base/to-float32",
8683
"@stdlib/number/float32/base/to-word",
8784
"@stdlib/number/float32/base/from-word",
8885
"@stdlib/constants/float32/exponent-bias",

lib/node_modules/@stdlib/math/base/special/log10f/src/main.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2022 The Stdlib Authors.
4+
* Copyright (c) 2024 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
@@ -33,7 +33,6 @@
3333
#include "stdlib/math/base/special/log10f.h"
3434
#include "stdlib/number/float32/base/to_word.h"
3535
#include "stdlib/number/float32/base/from_word.h"
36-
#include "stdlib/number/float64/base/to_float32.h"
3736
#include "stdlib/constants/float64/high_word_abs_mask.h"
3837
#include "stdlib/constants/float64/high_word_significand_mask.h"
3938
#include "stdlib/constants/float32/exponent_bias.h"
@@ -84,7 +83,7 @@ float stdlib_base_log10f( const float x ) {
8483
return 0.0 / 0.0; // NaN
8584
}
8685
xc = x;
87-
stdlib_base_float32_to_word( xc, &hx, );
86+
stdlib_base_float32_to_word( xc, &hx );
8887
ihx = (int32_t)hx;
8988
k = 0;
9089
if ( ihx < HIGH_MIN_NORMAL_EXP ) {

0 commit comments

Comments
 (0)