Changeset 245876 in webkit


Ignore:
Timestamp:
May 29, 2019 4:07:29 PM (5 years ago)
Author:
ddkilzer@apple.com
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.
Location:
trunk/Source/WTF
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r245874 r245876  
     12019-05-29  David Kilzer  <ddkilzer@apple.com>
     2
     3        Clean up a few #include statements in WTF
     4        <https://webkit.org/b/198351>
     5
     6        Reviewed by Alex Christensen.
     7
     8        * benchmarks/HashSetDFGReplay.cpp:
     9        - Add missing "config.h" include.
     10        * wtf/ParallelJobsGeneric.cpp:
     11        - Replace include of ParallelJobs.h with
     12          ParallelJobsGeneric.h.
     13        * wtf/StackBounds.cpp:
     14        - Fix include ordering of StackBounds.h.
     15
    1162019-05-29  Keith Rollin  <krollin@apple.com>
    217
  • trunk/Source/WTF/benchmarks/HashSetDFGReplay.cpp

    r213945 r245876  
    2525
    2626// 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
     27
     28#include "config.h"
    2729
    2830#include <wtf/DataLog.h>
  • trunk/Source/WTF/wtf/ParallelJobsGeneric.cpp

    r237099 r245876  
    2727
    2828#include "config.h"
     29#include <wtf/ParallelJobsGeneric.h>
    2930
    3031#if ENABLE(THREADING_GENERIC)
    3132
    3233#include <wtf/NumberOfCores.h>
    33 #include <wtf/ParallelJobs.h>
    3434
    3535namespace WTF {
  • trunk/Source/WTF/wtf/StackBounds.cpp

    r239093 r245876  
    2020
    2121#include "config.h"
     22#include <wtf/StackBounds.h>
     23
    2224#include <mutex>
    2325#include <wtf/NoTailCalls.h>
    24 #include <wtf/StackBounds.h>
    2526
    2627#if OS(DARWIN)
Note: See TracChangeset for help on using the changeset viewer.