Index: Source/wtf/text/StringConcatenate.cpp |
diff --git a/Source/wtf/text/StringConcatenate.cpp b/Source/wtf/text/StringConcatenate.cpp |
index ae083e53dae07f245117a963b71a8d38cdea72bf..2d36ba610a31a7cefe7a50888b7d6e5fe68bc74d 100644 |
--- a/Source/wtf/text/StringConcatenate.cpp |
+++ b/Source/wtf/text/StringConcatenate.cpp |
@@ -95,25 +95,25 @@ void WTF::StringTypeAdapter<const LChar*>::writeTo(UChar* destination) |
StringImpl::copyChars(destination, m_buffer, m_length); |
} |
-void WTF::StringTypeAdapter<Vector<char> >::writeTo(LChar* destination) |
+void WTF::StringTypeAdapter<Vector<char>>::writeTo(LChar* destination) |
{ |
for (size_t i = 0; i < m_buffer.size(); ++i) |
destination[i] = static_cast<unsigned char>(m_buffer[i]); |
} |
-void WTF::StringTypeAdapter<Vector<char> >::writeTo(UChar* destination) |
+void WTF::StringTypeAdapter<Vector<char>>::writeTo(UChar* destination) |
{ |
for (size_t i = 0; i < m_buffer.size(); ++i) |
destination[i] = static_cast<unsigned char>(m_buffer[i]); |
} |
-void WTF::StringTypeAdapter<Vector<LChar> >::writeTo(LChar* destination) |
+void WTF::StringTypeAdapter<Vector<LChar>>::writeTo(LChar* destination) |
{ |
for (size_t i = 0; i < m_buffer.size(); ++i) |
destination[i] = m_buffer[i]; |
} |
-void WTF::StringTypeAdapter<Vector<LChar> >::writeTo(UChar* destination) |
+void WTF::StringTypeAdapter<Vector<LChar>>::writeTo(UChar* destination) |
{ |
for (size_t i = 0; i < m_buffer.size(); ++i) |
destination[i] = m_buffer[i]; |