Disabled spurious Visual Studio warnings in the uClibc math code

This commit is contained in:
Sam Lantinga
2017-11-21 21:51:33 -08:00
parent 1c0c90323c
commit ac4b491b20
2 changed files with 10 additions and 0 deletions

View File

@@ -9,6 +9,11 @@
* ====================================================
*/
#if defined(_MSC_VER) /* Handle Microsoft VC++ compiler specifics. */
/* C4723: potential divide by zero. */
#pragma warning ( disable : 4723 )
#endif
/* __ieee754_log(x)
* Return the logrithm of x
*