Title: [123322] trunk/Source/WTF
Revision
123322
Author
[email protected]
Date
2012-07-23 02:47:59 -0700 (Mon, 23 Jul 2012)

Log Message

Build fix for Windows after r123317.

* wtf/DateMath.cpp: Added missing header include.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (123321 => 123322)


--- trunk/Source/WTF/ChangeLog	2012-07-23 09:47:18 UTC (rev 123321)
+++ trunk/Source/WTF/ChangeLog	2012-07-23 09:47:59 UTC (rev 123322)
@@ -1,5 +1,11 @@
 2012-07-23  Patrick Gansterer  <[email protected]>
 
+        Build fix for Windows after r123317.
+
+        * wtf/DateMath.cpp: Added missing header include.
+
+2012-07-23  Patrick Gansterer  <[email protected]>
+
         [WIN] Use GetTimeZoneInformation() for calculateUTCOffset()
         https://bugs.webkit.org/show_bug.cgi?id=91935
 

Modified: trunk/Source/WTF/wtf/DateMath.cpp (123321 => 123322)


--- trunk/Source/WTF/wtf/DateMath.cpp	2012-07-23 09:47:18 UTC (rev 123321)
+++ trunk/Source/WTF/wtf/DateMath.cpp	2012-07-23 09:47:59 UTC (rev 123322)
@@ -86,6 +86,10 @@
 #include <time.h>
 #include <wtf/text/StringBuilder.h>
 
+#if OS(WINDOWS)
+#include <windows.h>
+#endif
+
 #if HAVE(ERRNO_H)
 #include <errno.h>
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to