Skip to content

Commit 1346eb7

Browse files
chore: resolved example.c
Signed-off-by: Dhruv/ <[email protected]>
1 parent 6f32fb0 commit 1346eb7

File tree

1 file changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/math/base/special/cidentityf/examples/c

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/math/base/special/cidentityf/examples/c/example.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323

2424
int main( void ) {
2525
const stdlib_complex64_t x[] = {
26-
stdlib_complex64( 3.14, 1.5 ),
27-
stdlib_complex64( -3.14, -1.5 ),
28-
stdlib_complex64( 0.0, 0.0 ),
29-
stdlib_complex64( 0.0/0.0, 0.0/0.0 )
26+
stdlib_complex64( 3.14f, 1.5f ),
27+
stdlib_complex64( -3.14f, -1.5f ),
28+
stdlib_complex64( 0.0f, 0.0f ),
29+
stdlib_complex64( 0.0f/0.0f, 0.0f/0.0f )
3030
};
3131

3232
stdlib_complex64_t v;

0 commit comments

Comments
 (0)