-
Notifications
You must be signed in to change notification settings - Fork 93
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
remove Q_fabs #128
remove Q_fabs #128
Conversation
It's possible to replace incorrect I also noticed that |
inc/shared/shared.h
Outdated
@@ -27,6 +27,10 @@ with this program; if not, write to the Free Software Foundation, Inc., | |||
#include "config.h" | |||
#endif | |||
|
|||
#ifdef _WIN32 | |||
# define _USE_MATH_DEFINES |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not needed with MinGW-w64 5.0.3 unless__STRICT_ANSI__ is defined.
Changed. |
Applied, thanks. |
Replace
Q_fabs
usages withfabsf
. It's faster on today's hardware.