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

Unified Diff: Source/wtf/text/StringConcatenate.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/AtomicString.cpp ('k') | Source/wtf/text/StringConcatenate.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/text/StringConcatenate.h
diff --git a/Source/wtf/text/StringConcatenate.h b/Source/wtf/text/StringConcatenate.h
index 1bd25eb09dae9d215215b137303c6e7c95e23b01..01e14636154941dc6cdad7f64c3f4cf02f651573 100644
--- a/Source/wtf/text/StringConcatenate.h
+++ b/Source/wtf/text/StringConcatenate.h
@@ -212,9 +212,9 @@ private:
};
template<>
-class WTF_EXPORT StringTypeAdapter<Vector<char> > {
+class WTF_EXPORT StringTypeAdapter<Vector<char>> {
public:
- StringTypeAdapter<Vector<char> >(const Vector<char>& buffer)
+ StringTypeAdapter<Vector<char>>(const Vector<char>& buffer)
: m_buffer(buffer)
{
}
@@ -232,9 +232,9 @@ private:
};
template<>
-class StringTypeAdapter<Vector<LChar> > {
+class StringTypeAdapter<Vector<LChar>> {
public:
- StringTypeAdapter<Vector<LChar> >(const Vector<LChar>& buffer)
+ StringTypeAdapter<Vector<LChar>>(const Vector<LChar>& buffer)
: m_buffer(buffer)
{
}
« no previous file with comments | « Source/wtf/text/AtomicString.cpp ('k') | Source/wtf/text/StringConcatenate.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698