-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace obsolete isinff(...) #277
base: master
Are you sure you want to change the base?
Conversation
|
Yeah I saw that, very weird......... |
@ebassi The problem on the surface is |
The MSYS2 build failure in CI is caused by a package rename, and has been fixed in master. |
It should now be fine........ |
@ebassi Are the changes ok now? |
Fixes # N/A
Proposed changes: Replace isinff(...) with a combination of isinf(...) and signbit(...)
Benchmark results: No changes in performance.
Test suite changes: N/A
Almost the same to #188, but more aggressive. isinff(...) is completely remove from the source tree.
Reason: Mentioned in PR188, isinff(...) is both obsolete and non-standard. To maximize portability and suggested by GNU, we should have it replaced.
PS, Sorry due to our process we need to always fork under tags even if a tag only contains version changes. I have a rebased branch ready for merge now.
Edit:
Fix #278