Skip to content

Commit 6a656e0

Browse files
chore: update data types
1 parent e05c7cd commit 6a656e0

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/math/base/special/atanh/src

1 file changed

+3
-3
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ static const int32_t HIGH_BIASED_EXP_NEG_1 = 0x3fe00000;
9595
* // returns ~1.472
9696
*/
9797
double stdlib_base_atanh( const double x ) {
98-
u_int32_t lx;
99-
double hx;
100-
double ahx;
98+
uint32_t lx;
99+
int32_t hx;
100+
int32_t ahx;
101101
double t;
102102
if ( stdlib_base_is_nan( x ) || x < -1.0 || x > 1.0 ) {
103103
return 0.0 / 0.0; // NaN

0 commit comments

Comments
 (0)