2009-06-08  Dimitri Glazkov  <dglazkov@chromium.org>

        Unreviewed, projectile-fixing Windows build.

        * runtime/DateConversion.cpp: Added StringExtras include.
        * wtf/DateMath.cpp: Replaced math with algorithm include (looking for std::min def for Windows).

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@44510 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/JavaScriptCore/wtf/DateMath.cpp b/JavaScriptCore/wtf/DateMath.cpp
index 353e226..6e0710f 100644
--- a/JavaScriptCore/wtf/DateMath.cpp
+++ b/JavaScriptCore/wtf/DateMath.cpp
@@ -49,8 +49,8 @@
 #include "MathExtras.h"
 #include "StringExtras.h"
 
+#include <algorithm>
 #include <limits>
-#include <math.h>
 #include <stdint.h>
 #include <time.h>