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

Unified Diff: Source/wtf/Functional.h

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/DequeTest.cpp ('k') | Source/wtf/HashCountedSet.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/Functional.h
diff --git a/Source/wtf/Functional.h b/Source/wtf/Functional.h
index 4b8eba9fdc74b041de447aff0aa3026a811a1698..6a8375c78c4027cb9632baec17e96483053091df 100644
--- a/Source/wtf/Functional.h
+++ b/Source/wtf/Functional.h
@@ -99,14 +99,14 @@ template<typename T> struct ParamStorageTraits {
static const T& unwrap(const StorageType& value) { return value; }
};
-template<typename T> struct ParamStorageTraits<PassRefPtr<T> > {
+template<typename T> struct ParamStorageTraits<PassRefPtr<T>> {
typedef RefPtr<T> StorageType;
static StorageType wrap(PassRefPtr<T> value) { return value; }
static T* unwrap(const StorageType& value) { return value.get(); }
};
-template<typename T> struct ParamStorageTraits<RefPtr<T> > {
+template<typename T> struct ParamStorageTraits<RefPtr<T>> {
typedef RefPtr<T> StorageType;
static StorageType wrap(RefPtr<T> value) { return value.release(); }
@@ -115,7 +115,7 @@ template<typename T> struct ParamStorageTraits<RefPtr<T> > {
template<typename> class RetainPtr;
-template<typename T> struct ParamStorageTraits<RetainPtr<T> > {
+template<typename T> struct ParamStorageTraits<RetainPtr<T>> {
typedef RetainPtr<T> StorageType;
static StorageType wrap(const RetainPtr<T>& value) { return value; }
« no previous file with comments | « Source/wtf/DequeTest.cpp ('k') | Source/wtf/HashCountedSet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698