File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
lib/node_modules/@stdlib/math/base/special/log10f Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 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" ,
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" ,
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" ,
Original file line number Diff line number Diff line change 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.
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 ) {
You can’t perform that action at this time.
0 commit comments