Bug 868716 - Fix placement of #include <float.h>; r=ehsan

This commit is contained in:
Yuan Pengfei 2013-05-04 11:35:35 -04:00
Родитель 018f629b8b
Коммит 20ba164ee7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -27,13 +27,13 @@
#define _USE_MATH_DEFINES
#include <cmath>
#include <float.h>
namespace WebCore {
// Deal with denormals. They can very seriously impact performance on x86.
// Define HAVE_DENORMAL if we support flushing denormals to zero.
#include <float.h>
#if defined(XP_WIN) && defined(_MSC_VER)
#define HAVE_DENORMAL
#endif