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

Unified Diff: Source/wtf/text/StringOperators.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/text/StringImpl.cpp ('k') | Source/wtf/text/TextPosition.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/text/StringOperators.h
diff --git a/Source/wtf/text/StringOperators.h b/Source/wtf/text/StringOperators.h
index 65342dc033cd6212c8658ee0843dacd3d1782ed5..b2e5385f8f9f5cf534b2c149acb8b774b1222323 100644
--- a/Source/wtf/text/StringOperators.h
+++ b/Source/wtf/text/StringOperators.h
@@ -103,9 +103,9 @@ unsigned StringAppend<StringType1, StringType2>::length()
}
template<typename StringType1, typename StringType2>
-class StringTypeAdapter<StringAppend<StringType1, StringType2> > {
+class StringTypeAdapter<StringAppend<StringType1, StringType2>> {
public:
- StringTypeAdapter<StringAppend<StringType1, StringType2> >(StringAppend<StringType1, StringType2>& buffer)
+ StringTypeAdapter<StringAppend<StringType1, StringType2>>(StringAppend<StringType1, StringType2>& buffer)
: m_buffer(buffer)
{
}
@@ -132,9 +132,9 @@ inline StringAppend<const char*, AtomicString> operator+(const char* string1, co
}
template<typename U, typename V>
-inline StringAppend<const char*, StringAppend<U, V> > operator+(const char* string1, const StringAppend<U, V>& string2)
+inline StringAppend<const char*, StringAppend<U, V>> operator+(const char* string1, const StringAppend<U, V>& string2)
{
- return StringAppend<const char*, StringAppend<U, V> >(string1, string2);
+ return StringAppend<const char*, StringAppend<U, V>>(string1, string2);
}
inline StringAppend<const UChar*, String> operator+(const UChar* string1, const String& string2)
@@ -148,9 +148,9 @@ inline StringAppend<const UChar*, AtomicString> operator+(const UChar* string1,
}
template<typename U, typename V>
-inline StringAppend<const UChar*, StringAppend<U, V> > operator+(const UChar* string1, const StringAppend<U, V>& string2)
+inline StringAppend<const UChar*, StringAppend<U, V>> operator+(const UChar* string1, const StringAppend<U, V>& string2)
{
- return StringAppend<const UChar*, StringAppend<U, V> >(string1, string2);
+ return StringAppend<const UChar*, StringAppend<U, V>>(string1, string2);
}
template<typename T>
« no previous file with comments | « Source/wtf/text/StringImpl.cpp ('k') | Source/wtf/text/TextPosition.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698