Skip to content

Commit 60bb822

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent 4484477 commit 60bb822

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

lib/node_modules/@stdlib/math/base/assert/is-even/benchmark/c/native/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ static double benchmark( void ) {
9898
int i;
9999

100100
for ( i = 0; i < 100; i++ ) {
101-
x[ i ] = round(( rand_double() * 200.0 ) - 100.0);
101+
x[ i ] = round( (rand_double()*200.0) - 100.0 );
102102
}
103103

104104
t = tic();

lib/node_modules/@stdlib/math/base/assert/is-even/src/addon.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
#include "stdlib/napi/create_int32.h"
2323
#include "stdlib/napi/export.h"
2424
#include <node_api.h>
25-
#include <stdint.h>
2625

2726
/**
2827
* Receives JavaScript callback invocation data.

0 commit comments

Comments
 (0)