Index: Source/wtf/SizeLimits.cpp |
diff --git a/Source/wtf/SizeLimits.cpp b/Source/wtf/SizeLimits.cpp |
index 4bab6a18ab8d35d51342716d923864a4e5c06a0c..e50469ccf2cf9b8f28ee20a2d59d506e69298da3 100644 |
--- a/Source/wtf/SizeLimits.cpp |
+++ b/Source/wtf/SizeLimits.cpp |
@@ -77,9 +77,9 @@ struct SameSizeAsVectorWithInlineCapacity { |
}; |
static_assert(sizeof(OwnPtr<int>) == sizeof(int*), "OwnPtr should stay small"); |
-static_assert(sizeof(PassRefPtr<RefCounted<int> >) == sizeof(int*), "PassRefPtr should stay small"); |
+static_assert(sizeof(PassRefPtr<RefCounted<int>>) == sizeof(int*), "PassRefPtr should stay small"); |
static_assert(sizeof(RefCounted<int>) == sizeof(SameSizeAsRefCounted), "RefCounted should stay small"); |
-static_assert(sizeof(RefPtr<RefCounted<int> >) == sizeof(int*), "RefPtr should stay small"); |
+static_assert(sizeof(RefPtr<RefCounted<int>>) == sizeof(int*), "RefPtr should stay small"); |
static_assert(sizeof(String) == sizeof(int*), "String should stay small"); |
static_assert(sizeof(AtomicString) == sizeof(String), "AtomicString should stay small"); |
static_assert(sizeof(Vector<int>) == sizeof(SameSizeAsVectorWithInlineCapacity<int>), "Vector should stay small"); |