Title: [185009] trunk/Source/WTF
Revision
185009
Author
[email protected]
Date
2015-05-29 15:15:31 -0700 (Fri, 29 May 2015)

Log Message

Missing #import of Platform.h in several WTF headers
https://bugs.webkit.org/show_bug.cgi?id=145475
rdar://problem/21161818

Reviewed by Darin Adler.

Add Platform.h #includes.

* wtf/Assertions.h:
* wtf/RetainPtr.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (185008 => 185009)


--- trunk/Source/WTF/ChangeLog	2015-05-29 22:14:10 UTC (rev 185008)
+++ trunk/Source/WTF/ChangeLog	2015-05-29 22:15:31 UTC (rev 185009)
@@ -1,3 +1,16 @@
+2015-05-29  Anders Carlsson  <[email protected]>
+
+        Missing #import of Platform.h in several WTF headers
+        https://bugs.webkit.org/show_bug.cgi?id=145475
+        rdar://problem/21161818
+
+        Reviewed by Darin Adler.
+
+        Add Platform.h #includes.
+
+        * wtf/Assertions.h:
+        * wtf/RetainPtr.h:
+
 2015-05-29  Commit Queue  <[email protected]>
 
         Unreviewed, rolling out r184949.

Modified: trunk/Source/WTF/wtf/Assertions.h (185008 => 185009)


--- trunk/Source/WTF/wtf/Assertions.h	2015-05-29 22:14:10 UTC (rev 185008)
+++ trunk/Source/WTF/wtf/Assertions.h	2015-05-29 22:15:31 UTC (rev 185009)
@@ -26,6 +26,8 @@
 #ifndef WTF_Assertions_h
 #define WTF_Assertions_h
 
+#include <wtf/Platform.h>
+
 /*
    no namespaces because this file has to be includable from C and Objective-C
 

Modified: trunk/Source/WTF/wtf/RetainPtr.h (185008 => 185009)


--- trunk/Source/WTF/wtf/RetainPtr.h	2015-05-29 22:14:10 UTC (rev 185008)
+++ trunk/Source/WTF/wtf/RetainPtr.h	2015-05-29 22:15:31 UTC (rev 185009)
@@ -21,6 +21,8 @@
 #ifndef RetainPtr_h
 #define RetainPtr_h
 
+#include <wtf/Platform.h>
+
 #if USE(CF) || defined(__OBJC__)
 
 #include <wtf/HashTraits.h>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to