Skip to content

Commit ef06991

Browse files
committed
style: replace spaces with tabs
1 parent 5a3f881 commit ef06991

File tree

1 file changed

+5
-5
lines changed
  • lib/node_modules/@stdlib/math/base/assert/is-odd/src

1 file changed

+5
-5
lines changed

lib/node_modules/@stdlib/math/base/assert/is-odd/src/main.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
* // returns true
3333
*/
3434
bool stdlib_base_is_odd( const double x ) {
35-
// Check sign to prevent overflow...
36-
if ( x > 0.0 ) {
37-
return stdlib_base_is_even( x - 1.0 );
38-
}
39-
return stdlib_base_is_even( x + 1.0 );
35+
// Check sign to prevent overflow...
36+
if ( x > 0.0 ) {
37+
return stdlib_base_is_even( x - 1.0 );
38+
}
39+
return stdlib_base_is_even( x + 1.0 );
4040
}

0 commit comments

Comments
 (0)