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
Due to clang's different handling of "collision between C99 and C++11"
Sorry don't have the capability to create a pull and commit so patch is:
diff --git a/dmd2/root/port.c b/dmd2/root/port.c index 044f244..53b522b 100644 --- a/dmd2/root/port.c +++ b/dmd2/root/port.c @@ -600,7 +600,7 @@ int Port::isNan(double r) #else return __inline_isnan(r); #endif -#elif __HAIKU__ || __OpenBSD__ +#elif __HAIKU__ || __OpenBSD__ || __FreeBSD__ return isnan(r); #else #undef isnan @@ -616,7 +616,7 @@ int Port::isNan(longdouble r) #else return __inline_isnan(r); #endif -#elif __HAIKU__ || __OpenBSD__ +#elif __HAIKU__ || __OpenBSD__ || __FreeBSD__ return isnan(r); #else #undef isnan @@ -652,7 +652,7 @@ int Port::isInfinity(double r) { #if __APPLE__ return fpclassify(r) == FP_INFINITE; -#elif defined __HAIKU__ || __OpenBSD__ +#elif defined __HAIKU__ || __OpenBSD__ || __FreeBSD__ return isinf(r); #else #undef isinf
The text was updated successfully, but these errors were encountered:
Thanks for providing the code. I apply it as soon as I have full online access again. (Should be start of next week.)
Sorry, something went wrong.
Fix to compile LDC on FreeBSD 10.
11c2fb4
This fixes issue #584.
Is now fixed on all branches. Thanks for the report.
Merge pull request #584 from rainers/sleep_non_zero
12c5573
Thread.sleep for windows: for non-zero timeout, sleep at least 1ms
No branches or pull requests
Due to clang's different handling of "collision between C99 and C++11"
Sorry don't have the capability to create a pull and commit so patch is:
The text was updated successfully, but these errors were encountered: