Changeset 93841 in webkit for trunk/Source/JavaScriptCore/runtime/JSString.h
- Timestamp:
- Aug 25, 2011, 5:41:03 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSString.h
r93835 r93841 283 283 { 284 284 Base::finishCreation(globalData); 285 ASSERT (fiberCount <= s_maxInternalRopeLength);285 ASSERT_UNUSED(fiberCount, fiberCount <= s_maxInternalRopeLength); 286 286 unsigned index = 0; 287 287 appendStringInCreate(index, s1); … … 293 293 { 294 294 Base::finishCreation(globalData); 295 ASSERT (fiberCount <= s_maxInternalRopeLength);295 ASSERT_UNUSED(fiberCount, fiberCount <= s_maxInternalRopeLength); 296 296 unsigned index = 0; 297 297 appendStringInCreate(index, s1); … … 303 303 { 304 304 Base::finishCreation(globalData); 305 ASSERT (fiberCount <= s_maxInternalRopeLength);305 ASSERT_UNUSED(fiberCount, fiberCount <= s_maxInternalRopeLength); 306 306 unsigned index = 0; 307 307 appendStringInCreate(index, u1);
Note:
See TracChangeset
for help on using the changeset viewer.