Skip to content

Commit d8b8b92

Browse files
kgryteUtkarsh Gupta
authored and
Utkarsh Gupta
committed
style: fix spacing
1 parent be018c2 commit d8b8b92

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/math/base/special/ellipe/test/fixtures/cpp

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/math/base/special/ellipe/test/fixtures/cpp/runner.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -317,16 +317,16 @@ int main( void ) {
317317
len = 4000;
318318

319319
// Allocate arrays:
320-
x = (double*) malloc( len * sizeof(double) );
320+
x = (double *) malloc( len * sizeof(double) );
321321
if ( x == NULL ) {
322322
printf( "Error allocating memory.\n" );
323323
exit( 1 );
324324
}
325325

326-
rand_array_f64( x, len, 0.0, 0.99);
326+
rand_array_f64( x, len, 0.0, 0.99 );
327327
generate( x, len, "medium_positive.json" );
328328

329-
rand_array_f64( x, len, 0.99, 0.999999);
329+
rand_array_f64( x, len, 0.99, 0.999999 );
330330
generate( x, len, "close_to_unity.json" );
331331

332332
// Free allocated memory:

0 commit comments

Comments
 (0)