Changeset 43331 in webkit for trunk/JavaScriptCore/runtime/UString.cpp
- Timestamp:
- May 6, 2009, 5:06:07 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/UString.cpp
r43104 r43331 1062 1062 } 1063 1063 1064 UString& UString::appendNumeric(int i) 1065 { 1066 m_rep = concatenate(rep(), i); 1067 return *this; 1068 } 1069 1070 UString& UString::appendNumeric(double d) 1071 { 1072 m_rep = concatenate(rep(), d); 1073 return *this; 1074 } 1075 1064 1076 UString& UString::append(const char* t) 1065 1077 {
Note:
See TracChangeset
for help on using the changeset viewer.