Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jul 29, 2024
1 parent 97298a0 commit a6ffaf1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5729,6 +5729,7 @@ A total of 30 people contributed to this release. Thank you to the following con

<details>

- [`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)_
Expand Down
3 changes: 2 additions & 1 deletion base/special/sincos/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a6ffaf1

Please sign in to comment.