Title: [95540] trunk/Source/_javascript_Core
Revision
95540
Author
[email protected]
Date
2011-09-20 07:08:17 -0700 (Tue, 20 Sep 2011)

Log Message

Windows build fix after r95523

* wtf/CheckedArithmetic.h: Added stdint.h so we can have int64_t defined.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (95539 => 95540)


--- trunk/Source/_javascript_Core/ChangeLog	2011-09-20 14:03:21 UTC (rev 95539)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-09-20 14:08:17 UTC (rev 95540)
@@ -1,3 +1,9 @@
+2011-09-20  Adam Roben  <[email protected]>
+
+        Windows build fix after r95523
+
+        * wtf/CheckedArithmetic.h: Added stdint.h so we can have int64_t defined.
+
 2011-09-18  Filip Pizlo  <[email protected]>
 
         DFG JIT does not speculate aggressively enough on GetById

Modified: trunk/Source/_javascript_Core/wtf/CheckedArithmetic.h (95539 => 95540)


--- trunk/Source/_javascript_Core/wtf/CheckedArithmetic.h	2011-09-20 14:03:21 UTC (rev 95539)
+++ trunk/Source/_javascript_Core/wtf/CheckedArithmetic.h	2011-09-20 14:08:17 UTC (rev 95540)
@@ -30,6 +30,7 @@
 #include "TypeTraits.h"
 
 #include <limits>
+#include <stdint.h>
 
 /* Checked<T>
  *
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to