Changeset 69663 in webkit for trunk/JavaScriptCore/bytecompiler/NodesCodegen.cpp
- Timestamp:
- Oct 13, 2010, 7:44:14 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecompiler/NodesCodegen.cpp
r68338 r69663 43 43 #include "RegExpObject.h" 44 44 #include "SamplingTool.h" 45 #include " StringConcatenate.h"45 #include "UStringConcatenate.h" 46 46 #include <wtf/Assertions.h> 47 47 #include <wtf/RefCountedLeakCounter.h> … … 81 81 size_t position = string.find("%s"); 82 82 ASSERT(position != notFound); 83 string = make String(string.substringSharingImpl(0, position), substring, string.substringSharingImpl(position + 2));83 string = makeUString(string.substringSharingImpl(0, position), substring, string.substringSharingImpl(position + 2)); 84 84 } 85 85
Note:
See TracChangeset
for help on using the changeset viewer.