Bug 222056 Integrate warning fix from Adobe for e_pow.c and e_sqrt.c

Patch by Adobe rs=brendan


git-svn-id: svn://10.0.0.236/trunk@149012 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
timeless%mozdev.org
2003-11-07 19:46:29 +00:00
parent bc07570b8c
commit e994f0ffcc
2 changed files with 10 additions and 0 deletions

View File

@@ -91,6 +91,11 @@
#include "fdlibm.h"
#if defined(_MSC_VER)
/* Microsoft Compiler */
#pragma warning( disable : 4723 ) /* disables potential divide by 0 warning */
#endif
#ifdef __STDC__
static const double
#else

View File

@@ -115,6 +115,11 @@
#include "fdlibm.h"
#if defined(_MSC_VER)
/* Microsoft Compiler */
#pragma warning( disable : 4723 ) /* disables potential divide by 0 warning */
#endif
#ifdef __STDC__
static const double one = 1.0, tiny=1.0e-300;
#else