Changeset 56560 in webkit for trunk/JavaScriptCore/runtime/UString.h
- Timestamp:
- Mar 25, 2010, 11:20:17 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/UString.h
r56342 r56560 62 62 CString& operator+=(const CString& c) { return append(c); } 63 63 64 size_t size() const { return m_length; }65 const char* c_str() const { return m_data; }64 size_t length() const { return m_length; } 65 const char* data() const { return m_data; } 66 66 67 67 private: … … 113 113 static UString from(long); 114 114 static UString from(double); 115 116 bool getCString(CStringBuffer&) const;117 115 118 116 // NOTE: This method should only be used for *debugging* purposes as it
Note:
See TracChangeset
for help on using the changeset viewer.