Changeset 70749 in webkit for trunk/JavaScriptCore/API/APICast.h
- Timestamp:
- Oct 28, 2010, 12:00:37 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/APICast.h
r55633 r70749 112 112 return 0; 113 113 if (!v.isCell()) 114 return reinterpret_cast<JSValueRef>( asCell(JSC::jsAPIValueWrapper(exec, v)));115 return reinterpret_cast<JSValueRef>( asCell(v));114 return reinterpret_cast<JSValueRef>(JSC::jsAPIValueWrapper(exec, v).asCell()); 115 return reinterpret_cast<JSValueRef>(v.asCell()); 116 116 #else 117 117 UNUSED_PARAM(exec);
Note:
See TracChangeset
for help on using the changeset viewer.