Skip to content

Commit

Permalink
chore: resolve warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
aman-095 committed Apr 25, 2024
1 parent 062dc8c commit 7231c8a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ bench( pkg, function benchmark( b ) {
var i;

values = [
new Complex128( uniform( -500.0, 500.0, options ), uniform( -500.0, 500.0, options ) ),
new Complex128( uniform( -500.0, 500.0, options ), uniform( -500.0, 500.0, options ) )
new Complex128( uniform( -500.0, 500.0, options ), uniform( -500.0, 500.0, options ) ), // eslint-disable-line max-len
new Complex128( uniform( -500.0, 500.0, options ), uniform( -500.0, 500.0, options ) ) // eslint-disable-line max-len
];

b.tic();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ bench( pkg+'::native', opts, function benchmark( b ) {
var i;

values = [
new Complex128( uniform( -500.0, 500.0, options ), uniform( -500.0, 500.0, options ) ),
new Complex128( uniform( -500.0, 500.0, options ), uniform( -500.0, 500.0, options ) )
new Complex128( uniform( -500.0, 500.0, options ), uniform( -500.0, 500.0, options ) ), // eslint-disable-line max-len
new Complex128( uniform( -500.0, 500.0, options ), uniform( -500.0, 500.0, options ) ) // eslint-disable-line max-len
];

b.tic();
Expand Down

0 comments on commit 7231c8a

Please sign in to comment.