Skip to content

Commit 7ae03bc

Browse files
Update lib/node_modules/@stdlib/math/base/special/croundf/src/main.c
Co-authored-by: Philipp Burckhardt <[email protected]> Signed-off-by: Gururaj Gurram <[email protected]>
1 parent 1e65bbc commit 7ae03bc

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/math/base/special/croundf/src

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/math/base/special/croundf/src/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ stdlib_complex64_t stdlib_base_croundf( const stdlib_complex64_t z ) {
4949

5050
stdlib_complex64_reim( z, &re, &im );
5151

52-
re = stdlib_base_roundf( re ); // TODO: replace with stdlib function once available
53-
im = stdlib_base_roundf( im ); // TODO: replace with stdlib function once available
52+
re = stdlib_base_roundf( re );
53+
im = stdlib_base_roundf( im );
5454
return stdlib_complex64( re, im );
5555
}

0 commit comments

Comments
 (0)