diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ec010f8f..9ce855ea8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5729,6 +5729,7 @@ A total of 30 people contributed to this release. Thank you to the following con
+- [`f00c6b6`](https://github.com/stdlib-js/stdlib/commit/f00c6b63931baf0e14f1b6adeeacc2a1c3e353df) - **refactor:** move `return` statement [(#2702)](https://github.com/stdlib-js/stdlib/pull/2702) _(by Gunj Joshi)_ - [`ca6489f`](https://github.com/stdlib-js/stdlib/commit/ca6489fe555d5ae046287abf53e0655c5ab8f8de) - **refactor:** remove include and fix return type [(#2699)](https://github.com/stdlib-js/stdlib/pull/2699) _(by Gunj Joshi)_ - [`a2ad2e1`](https://github.com/stdlib-js/stdlib/commit/a2ad2e1ad4f9150b818e3cf828815d4b73913f59) - **chore:** update package meta data [(#2696)](https://github.com/stdlib-js/stdlib/pull/2696) _(by stdlib-bot, Philipp Burckhardt)_ - [`39a6773`](https://github.com/stdlib-js/stdlib/commit/39a67731ee7d3e1f6afb827ba59c89526b975f0a) - **docs:** remove unused include from example in `math/base/special/gamma/README.md` [(#2677)](https://github.com/stdlib-js/stdlib/pull/2677) _(by Gunj Joshi)_ diff --git a/base/special/sincos/src/main.c b/base/special/sincos/src/main.c index f5bf17ad1..1dc08528c 100644 --- a/base/special/sincos/src/main.c +++ b/base/special/sincos/src/main.c @@ -125,7 +125,8 @@ void stdlib_base_sincos( const double x, double* sine, double* cosine ) { *cosine = 0.0; } } - return kernelSincos( x, 0.0, sine, cosine ); + kernelSincos( x, 0.0, sine, cosine ); + return; } // Case: x is NaN or infinity