Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (99381 => 99382)
--- trunk/Source/_javascript_Core/ChangeLog 2011-11-06 21:01:45 UTC (rev 99381)
+++ trunk/Source/_javascript_Core/ChangeLog 2011-11-06 21:29:52 UTC (rev 99382)
@@ -1,5 +1,21 @@
2011-11-06 Sam Weinig <[email protected]>
+ 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:
+
+2011-11-06 Sam Weinig <[email protected]>
+
Allow use of FINAL in _javascript_Core
https://bugs.webkit.org/show_bug.cgi?id=71630
Modified: trunk/Source/_javascript_Core/assembler/AssemblerBufferWithConstantPool.h (99381 => 99382)
--- trunk/Source/_javascript_Core/assembler/AssemblerBufferWithConstantPool.h 2011-11-06 21:01:45 UTC (rev 99381)
+++ trunk/Source/_javascript_Core/assembler/AssemblerBufferWithConstantPool.h 2011-11-06 21:29:52 UTC (rev 99382)
@@ -83,7 +83,7 @@
*/
template <int maxPoolSize, int barrierSize, int maxInstructionSize, class AssemblerType>
-class AssemblerBufferWithConstantPool: public AssemblerBuffer {
+class AssemblerBufferWithConstantPool : public AssemblerBuffer {
typedef SegmentedVector<uint32_t, 512> LoadOffsets;
using AssemblerBuffer::putIntegral;
using AssemblerBuffer::putIntegralUnchecked;
Modified: trunk/Source/_javascript_Core/bytecode/CodeBlock.h (99381 => 99382)
--- trunk/Source/_javascript_Core/bytecode/CodeBlock.h 2011-11-06 21:01:45 UTC (rev 99381)
+++ trunk/Source/_javascript_Core/bytecode/CodeBlock.h 2011-11-06 21:29:52 UTC (rev 99382)
@@ -103,7 +103,7 @@
};
#if ENABLE(JIT)
- struct CallLinkInfo: public BasicRawSentinelNode<CallLinkInfo> {
+ struct CallLinkInfo : public BasicRawSentinelNode<CallLinkInfo> {
CallLinkInfo()
: hasSeenShouldRepatch(false)
, isCall(false)
Modified: trunk/Source/_javascript_Core/dfg/DFGVariableAccessData.h (99381 => 99382)
--- trunk/Source/_javascript_Core/dfg/DFGVariableAccessData.h 2011-11-06 21:01:45 UTC (rev 99381)
+++ trunk/Source/_javascript_Core/dfg/DFGVariableAccessData.h 2011-11-06 21:29:52 UTC (rev 99382)
@@ -33,7 +33,7 @@
namespace JSC { namespace DFG {
-class VariableAccessData: public UnionFind<VariableAccessData> {
+class VariableAccessData : public UnionFind<VariableAccessData> {
public:
VariableAccessData()
: m_local(static_cast<VirtualRegister>(std::numeric_limits<int>::min()))
Modified: trunk/Source/_javascript_Core/heap/VTableSpectrum.h (99381 => 99382)
--- trunk/Source/_javascript_Core/heap/VTableSpectrum.h 2011-11-06 21:01:45 UTC (rev 99381)
+++ trunk/Source/_javascript_Core/heap/VTableSpectrum.h 2011-11-06 21:29:52 UTC (rev 99382)
@@ -33,7 +33,7 @@
class JSCell;
-class VTableSpectrum: Spectrum<void*> {
+class VTableSpectrum : Spectrum<void*> {
public:
VTableSpectrum();
~VTableSpectrum();
Modified: trunk/Source/_javascript_Core/jit/ExecutableAllocator.cpp (99381 => 99382)
--- trunk/Source/_javascript_Core/jit/ExecutableAllocator.cpp 2011-11-06 21:01:45 UTC (rev 99381)
+++ trunk/Source/_javascript_Core/jit/ExecutableAllocator.cpp 2011-11-06 21:29:52 UTC (rev 99382)
@@ -41,7 +41,7 @@
#if ENABLE(EXECUTABLE_ALLOCATOR_DEMAND)
-class DemandExecutableAllocator: public MetaAllocator {
+class DemandExecutableAllocator : public MetaAllocator {
public:
DemandExecutableAllocator()
: MetaAllocator(32) // round up all allocations to 32 bytes
Modified: trunk/Source/_javascript_Core/jit/ExecutableAllocatorFixedVMPool.cpp (99381 => 99382)
--- trunk/Source/_javascript_Core/jit/ExecutableAllocatorFixedVMPool.cpp 2011-11-06 21:01:45 UTC (rev 99381)
+++ trunk/Source/_javascript_Core/jit/ExecutableAllocatorFixedVMPool.cpp 2011-11-06 21:29:52 UTC (rev 99382)
@@ -53,7 +53,7 @@
static const size_t fixedPoolSize = 32 * 1024 * 1024;
#endif
-class FixedVMPoolExecutableAllocator: public MetaAllocator {
+class FixedVMPoolExecutableAllocator : public MetaAllocator {
public:
FixedVMPoolExecutableAllocator()
: MetaAllocator(32) // round up all allocations to 32 bytes
Modified: trunk/Source/_javascript_Core/wtf/MetaAllocatorHandle.h (99381 => 99382)
--- trunk/Source/_javascript_Core/wtf/MetaAllocatorHandle.h 2011-11-06 21:01:45 UTC (rev 99381)
+++ trunk/Source/_javascript_Core/wtf/MetaAllocatorHandle.h 2011-11-06 21:29:52 UTC (rev 99382)
@@ -37,7 +37,7 @@
class MetaAllocator;
-class MetaAllocatorHandle: public RefCounted<MetaAllocatorHandle> {
+class MetaAllocatorHandle : public RefCounted<MetaAllocatorHandle> {
private:
MetaAllocatorHandle(MetaAllocator*, void* start, size_t sizeInBytes);
Modified: trunk/Source/_javascript_Core/wtf/UnionFind.h (99381 => 99382)
--- trunk/Source/_javascript_Core/wtf/UnionFind.h 2011-11-06 21:01:45 UTC (rev 99381)
+++ trunk/Source/_javascript_Core/wtf/UnionFind.h 2011-11-06 21:29:52 UTC (rev 99382)
@@ -35,7 +35,7 @@
// node in the forest. Typically you use it by using UnionFind as a
// superclass:
//
-// class MemberOfSet: public UnionFind<MemberOfSet> { ... }
+// class MemberOfSet : public UnionFind<MemberOfSet> { ... }
//
// Calling x->find() gives you a MemberOfSet* that represents the
// disjoint set that x belongs to. Calling x->unify(y) unifies x's