Changeset 15168 in webkit for trunk/JavaScriptCore/API/APICast.h
- Timestamp:
- Jul 5, 2006, 12:10:49 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/APICast.h
r14969 r15168 50 50 } 51 51 52 inline KJS::UString::Rep* toJS(JS CharBufferRef b)52 inline KJS::UString::Rep* toJS(JSStringBufferRef b) 53 53 { 54 54 return reinterpret_cast<KJS::UString::Rep*>(b); … … 70 70 } 71 71 72 inline JS CharBufferRef toRef(KJS::UString::Rep* s)72 inline JSStringBufferRef toRef(KJS::UString::Rep* s) 73 73 { 74 return reinterpret_cast<JS CharBufferRef>(s);74 return reinterpret_cast<JSStringBufferRef>(s); 75 75 } 76 76
Note:
See TracChangeset
for help on using the changeset viewer.