Skip to content

Commit 4ef278e

Browse files
authored
refactor: inline operations
Signed-off-by: Athan <kgryte@gmail.com>
1 parent a72c52f commit 4ef278e

File tree

1 file changed

+1
-3
lines changed
  • lib/node_modules/@stdlib/math/base/special/csignumf/src

1 file changed

+1
-3
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,5 @@ stdlib_complex64_t stdlib_base_csignumf( const stdlib_complex64_t z ) {
5252
return z;
5353
}
5454
stdlib_complex64_reim( z, &re, &im );
55-
re = re / az;
56-
im = im / az;
57-
return stdlib_complex64( re, im );
55+
return stdlib_complex64( re/az, im/az );
5856
}

0 commit comments

Comments
 (0)