⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 99382 in webkit


Ignore:
Timestamp:
Nov 6, 2011, 1:29:52 PM (15 years ago)
Author:
weinig@apple.com
Message:

Add space missing from some class declarations
https://bugs.webkit.org/show_bug.cgi?id=71632

Reviewed by Anders Carlsson.

  • assembler/AssemblerBufferWithConstantPool.h:
  • bytecode/CodeBlock.h:
  • dfg/DFGVariableAccessData.h:
  • heap/VTableSpectrum.h:
  • jit/ExecutableAllocator.cpp:
  • jit/ExecutableAllocatorFixedVMPool.cpp:
  • wtf/MetaAllocatorHandle.h:
  • wtf/UnionFind.h:
Location:
trunk/Source/JavaScriptCore
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r99378 r99382  
     12011-11-06  Sam Weinig  <sam@webkit.org>
     2
     3        Add space missing from some class declarations
     4        https://bugs.webkit.org/show_bug.cgi?id=71632
     5
     6        Reviewed by Anders Carlsson.
     7
     8        * assembler/AssemblerBufferWithConstantPool.h:
     9        * bytecode/CodeBlock.h:
     10        * dfg/DFGVariableAccessData.h:
     11        * heap/VTableSpectrum.h:
     12        * jit/ExecutableAllocator.cpp:
     13        * jit/ExecutableAllocatorFixedVMPool.cpp:
     14        * wtf/MetaAllocatorHandle.h:
     15        * wtf/UnionFind.h:
     16
    1172011-11-06  Sam Weinig  <sam@webkit.org>
    218
  • trunk/Source/JavaScriptCore/assembler/AssemblerBufferWithConstantPool.h

    r95901 r99382  
    8484
    8585template <int maxPoolSize, int barrierSize, int maxInstructionSize, class AssemblerType>
    86 class AssemblerBufferWithConstantPool: public AssemblerBuffer {
     86class AssemblerBufferWithConstantPool : public AssemblerBuffer {
    8787    typedef SegmentedVector<uint32_t, 512> LoadOffsets;
    8888    using AssemblerBuffer::putIntegral;
  • trunk/Source/JavaScriptCore/bytecode/CodeBlock.h

    r99009 r99382  
    104104
    105105#if ENABLE(JIT)
    106     struct CallLinkInfo: public BasicRawSentinelNode<CallLinkInfo> {
     106    struct CallLinkInfo : public BasicRawSentinelNode<CallLinkInfo> {
    107107        CallLinkInfo()
    108108            : hasSeenShouldRepatch(false)
  • trunk/Source/JavaScriptCore/dfg/DFGVariableAccessData.h

    r99144 r99382  
    3434namespace JSC { namespace DFG {
    3535
    36 class VariableAccessData: public UnionFind<VariableAccessData> {
     36class VariableAccessData : public UnionFind<VariableAccessData> {
    3737public:
    3838    VariableAccessData()
  • trunk/Source/JavaScriptCore/heap/VTableSpectrum.h

    r99374 r99382  
    3434class JSCell;
    3535
    36 class VTableSpectrum: Spectrum<void*> {
     36class VTableSpectrum : Spectrum<void*> {
    3737public:
    3838    VTableSpectrum();
  • trunk/Source/JavaScriptCore/jit/ExecutableAllocator.cpp

    r97557 r99382  
    4242#if ENABLE(EXECUTABLE_ALLOCATOR_DEMAND)
    4343
    44 class DemandExecutableAllocator: public MetaAllocator {
     44class DemandExecutableAllocator : public MetaAllocator {
    4545public:
    4646    DemandExecutableAllocator()
  • trunk/Source/JavaScriptCore/jit/ExecutableAllocatorFixedVMPool.cpp

    r95901 r99382  
    5454#endif
    5555
    56 class FixedVMPoolExecutableAllocator: public MetaAllocator {
     56class FixedVMPoolExecutableAllocator : public MetaAllocator {
    5757public:
    5858    FixedVMPoolExecutableAllocator()
  • trunk/Source/JavaScriptCore/wtf/MetaAllocatorHandle.h

    r95901 r99382  
    3838class MetaAllocator;
    3939
    40 class MetaAllocatorHandle: public RefCounted<MetaAllocatorHandle> {
     40class MetaAllocatorHandle : public RefCounted<MetaAllocatorHandle> {
    4141private:
    4242    MetaAllocatorHandle(MetaAllocator*, void* start, size_t sizeInBytes);
  • trunk/Source/JavaScriptCore/wtf/UnionFind.h

    r96375 r99382  
    3636// superclass:
    3737//
    38 // class MemberOfSet: public UnionFind<MemberOfSet> { ... }
     38// class MemberOfSet : public UnionFind<MemberOfSet> { ... }
    3939//
    4040// Calling x->find() gives you a MemberOfSet* that represents the
Note: See TracChangeset for help on using the changeset viewer.