Title: [245876] trunk/Source/WTF
Revision
245876
Author
[email protected]
Date
2019-05-29 16:07:29 -0700 (Wed, 29 May 2019)

Log Message

Clean up a few #include statements in WTF
<https://webkit.org/b/198351>

Reviewed by Alex Christensen.

* benchmarks/HashSetDFGReplay.cpp:
- Add missing "config.h" include.
* wtf/ParallelJobsGeneric.cpp:
- Replace include of ParallelJobs.h with
  ParallelJobsGeneric.h.
* wtf/StackBounds.cpp:
- Fix include ordering of StackBounds.h.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (245875 => 245876)


--- trunk/Source/WTF/ChangeLog	2019-05-29 23:05:55 UTC (rev 245875)
+++ trunk/Source/WTF/ChangeLog	2019-05-29 23:07:29 UTC (rev 245876)
@@ -1,3 +1,18 @@
+2019-05-29  David Kilzer  <[email protected]>
+
+        Clean up a few #include statements in WTF
+        <https://webkit.org/b/198351>
+
+        Reviewed by Alex Christensen.
+
+        * benchmarks/HashSetDFGReplay.cpp:
+        - Add missing "config.h" include.
+        * wtf/ParallelJobsGeneric.cpp:
+        - Replace include of ParallelJobs.h with
+          ParallelJobsGeneric.h.
+        * wtf/StackBounds.cpp:
+        - Fix include ordering of StackBounds.h.
+
 2019-05-29  Keith Rollin  <[email protected]>
 
         Followup to r245267 and r245272: fix even more deprecated uses of -[UIApplication interfaceOrientation]

Modified: trunk/Source/WTF/benchmarks/HashSetDFGReplay.cpp (245875 => 245876)


--- trunk/Source/WTF/benchmarks/HashSetDFGReplay.cpp	2019-05-29 23:05:55 UTC (rev 245875)
+++ trunk/Source/WTF/benchmarks/HashSetDFGReplay.cpp	2019-05-29 23:07:29 UTC (rev 245876)
@@ -25,6 +25,8 @@
 
 // Compile with: xcrun clang++ -o HashSetDFGReplay Source/WTF/benchmarks/HashSetDFGReplay.cpp -O2 -W -ISource/WTF -ISource/WTF/benchmarks -LWebKitBuild/Release -lWTF -framework Foundation -licucore -std=c++11 -fvisibility=hidden -DNDEBUG=1
 
+#include "config.h"
+
 #include <wtf/DataLog.h>
 #include <wtf/HashSet.h>
 #include <wtf/WallTime.h>

Modified: trunk/Source/WTF/wtf/ParallelJobsGeneric.cpp (245875 => 245876)


--- trunk/Source/WTF/wtf/ParallelJobsGeneric.cpp	2019-05-29 23:05:55 UTC (rev 245875)
+++ trunk/Source/WTF/wtf/ParallelJobsGeneric.cpp	2019-05-29 23:07:29 UTC (rev 245876)
@@ -26,11 +26,11 @@
  */
 
 #include "config.h"
+#include <wtf/ParallelJobsGeneric.h>
 
 #if ENABLE(THREADING_GENERIC)
 
 #include <wtf/NumberOfCores.h>
-#include <wtf/ParallelJobs.h>
 
 namespace WTF {
 

Modified: trunk/Source/WTF/wtf/StackBounds.cpp (245875 => 245876)


--- trunk/Source/WTF/wtf/StackBounds.cpp	2019-05-29 23:05:55 UTC (rev 245875)
+++ trunk/Source/WTF/wtf/StackBounds.cpp	2019-05-29 23:07:29 UTC (rev 245876)
@@ -19,9 +19,10 @@
  */
 
 #include "config.h"
+#include <wtf/StackBounds.h>
+
 #include <mutex>
 #include <wtf/NoTailCalls.h>
-#include <wtf/StackBounds.h>
 
 #if OS(DARWIN)
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to