Title: [174255] trunk/Source/WTF
- Revision
- 174255
- Author
- [email protected]
- Date
- 2014-10-02 19:49:15 -0700 (Thu, 02 Oct 2014)
Log Message
Add back debugging/testing code that I accidentally removed.
* wtf/text/StringConcatenate.h:
(WTF::StringTypeAdapter<String>::writeTo):
Modified Paths
Diff
Modified: trunk/Source/WTF/ChangeLog (174254 => 174255)
--- trunk/Source/WTF/ChangeLog 2014-10-03 02:07:17 UTC (rev 174254)
+++ trunk/Source/WTF/ChangeLog 2014-10-03 02:49:15 UTC (rev 174255)
@@ -1,5 +1,12 @@
2014-10-02 Anders Carlsson <[email protected]>
+ Add back debugging/testing code that I accidentally removed.
+
+ * wtf/text/StringConcatenate.h:
+ (WTF::StringTypeAdapter<String>::writeTo):
+
+2014-10-02 Anders Carlsson <[email protected]>
+
Simplify StringTypeAdapter templates
https://bugs.webkit.org/show_bug.cgi?id=137356
Modified: trunk/Source/WTF/wtf/text/StringConcatenate.h (174254 => 174255)
--- trunk/Source/WTF/wtf/text/StringConcatenate.h 2014-10-03 02:07:17 UTC (rev 174254)
+++ trunk/Source/WTF/wtf/text/StringConcatenate.h 2014-10-03 02:49:15 UTC (rev 174255)
@@ -225,11 +225,13 @@
void writeTo(LChar* destination) const
{
StringView(m_string).getCharactersWithUpconvert(destination);
+ WTF_STRINGTYPEADAPTER_COPIED_WTF_STRING();
}
void writeTo(UChar* destination) const
{
StringView(m_string).getCharactersWithUpconvert(destination);
+ WTF_STRINGTYPEADAPTER_COPIED_WTF_STRING();
}
private:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes