Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(510)

Unified Diff: Source/wtf/SizeLimits.cpp

Issue 835953003: Fix template angle bracket syntax (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/wtf/RetainPtr.h ('k') | Source/wtf/StreamBuffer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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");
« no previous file with comments | « Source/wtf/RetainPtr.h ('k') | Source/wtf/StreamBuffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698