Commit 73f6d708 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #1510 from schmurfy/freebsd_fix

fixed compilation on freebsd releases witout log2 function
parents 888ddf1c 19f54309
......@@ -89,7 +89,7 @@ erfc(double x)
#endif
#if (defined _MSC_VER && _MSC_VER < 1800) || defined __ANDROID__
#if (defined _MSC_VER && _MSC_VER < 1800) || defined __ANDROID__ || (defined __FreeBSD__ && __FreeBSD_version < 803000)
double
log2(double x)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment