Changeset 67012 in webkit for trunk/JavaScriptCore
- Timestamp:
- Sep 8, 2010, 1:57:33 PM (15 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r66991 r67012 1 2010-09-08 Robert Hogan <[email protected]> 2 3 Reviewed by Antonio Gomes. 4 5 Remove some unnecessary duplicate calls to string functions 6 7 https://bugs.webkit.org/show_bug.cgi?id=45314 8 9 * wtf/text/WTFString.cpp: 10 (WTF::String::format): 11 1 12 2010-09-08 Jocelyn Turcotte <[email protected]> 2 13 -
trunk/JavaScriptCore/wtf/text/WTFString.cpp
r66844 r67012 336 336 va_end(args); 337 337 338 return StringImpl::create(buffer.toUtf8().constData(), buffer.toUtf8().length()); 338 QByteArray ba = buffer.toUtf8(); 339 return StringImpl::create(ba.constData(), ba.length()); 339 340 340 341 #elif OS(WINCE)
Note:
See TracChangeset
for help on using the changeset viewer.