We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
in src/graphene-ray.c, isnanf does not exist on Windows, but _isnanf does :
https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/isnan-isnan-isnanf?view=vs-2019
would it be possible do something like
#if defined _WIN32 && ! defined isnanf # define isnanf(x) _isnanf(x) #endif
at the top of graphene-ray.c for example ?
then maybe the check os isnanf in meson.buikd on Windows is useless
thank you
The text was updated successfully, but these errors were encountered:
also, one should define HAVE_ISNANF in it. So
#if defined _WIN32 && ! defined isnanf # define isnanf(x) _isnanf(x) # define HAVE_ISNANF #endif
Sorry, something went wrong.
Thanks for your patience.
Would you care to put together a merge request?
No branches or pull requests
in src/graphene-ray.c, isnanf does not exist on Windows, but _isnanf does :
https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/isnan-isnan-isnanf?view=vs-2019
would it be possible do something like
at the top of graphene-ray.c for example ?
then maybe the check os isnanf in meson.buikd on Windows is useless
thank you
The text was updated successfully, but these errors were encountered: