Changeset 65099 in webkit for trunk/JavaScriptCore/API/JSClassRef.cpp
- Timestamp:
- Aug 10, 2010, 3:32:19 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSClassRef.cpp
r59941 r65099 84 84 // Use a local variable here to sidestep an RVCT compiler bug. 85 85 StaticValueEntry* entry = new StaticValueEntry(staticValue->getProperty, staticValue->setProperty, staticValue->attributes); 86 UStringImpl* impl = valueName.rep();86 StringImpl* impl = valueName.rep(); 87 87 impl->ref(); 88 88 m_staticValues->add(impl, entry); … … 99 99 // Use a local variable here to sidestep an RVCT compiler bug. 100 100 StaticFunctionEntry* entry = new StaticFunctionEntry(staticFunction->callAsFunction, staticFunction->attributes); 101 UStringImpl* impl = functionName.rep();101 StringImpl* impl = functionName.rep(); 102 102 impl->ref(); 103 103 m_staticFunctions->add(impl, entry);
Note:
See TracChangeset
for help on using the changeset viewer.