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

Unified Diff: Source/wtf/PassTraits.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/MessageQueue.h ('k') | Source/wtf/RefCountedLeakCounter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/PassTraits.h
diff --git a/Source/wtf/PassTraits.h b/Source/wtf/PassTraits.h
index 79b93a3b9f6a46766312f0d7775500736f678303..f9f990eaf8f60456a62743dcdcaad2cca4ad89a9 100644
--- a/Source/wtf/PassTraits.h
+++ b/Source/wtf/PassTraits.h
@@ -44,13 +44,13 @@ template<typename T> struct PassTraits {
static Type& transfer(Type& value) { return value; }
};
-template<typename T> struct PassTraits<OwnPtr<T> > {
+template<typename T> struct PassTraits<OwnPtr<T>> {
typedef OwnPtr<T> Type;
typedef PassOwnPtr<T> PassType;
static PassType transfer(Type& value) { return value.release(); }
};
-template<typename T> struct PassTraits<RefPtr<T> > {
+template<typename T> struct PassTraits<RefPtr<T>> {
typedef RefPtr<T> Type;
typedef PassRefPtr<T> PassType;
static PassType transfer(Type& value) { return value.release(); }
« no previous file with comments | « Source/wtf/MessageQueue.h ('k') | Source/wtf/RefCountedLeakCounter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698