Skip to content

Commit 457662c

Browse files
committed
style: add linebreak
1 parent 48703d8 commit 457662c

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/floor2/src

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
#include "stdlib/constants/float64/min_base2_exponent_subnormal.h"
2828
#include "stdlib/constants/float64/ninf.h"
2929

30-
3130
/**
3231
* Rounds a numeric value to the nearest power of two toward negative infinity.
3332
*
@@ -55,6 +54,7 @@ double stdlib_base_floor2( const double x ) {
5554
}
5655
// Solve the equation `2^p = x` for `p`:
5756
p = stdlib_base_log2( xc );
57+
5858
// If provided the smallest subnormal, no rounding possible:
5959
if ( p == STDLIB_CONSTANT_FLOAT64_MIN_BASE2_EXPONENT_SUBNORMAL ) {
6060
return xc;

0 commit comments

Comments
 (0)