Changeset 45897 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jul 14, 2009, 11:00:24 PM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r45892 r45897 12 12 * JavaScriptCore.vcproj/testapi/testapi.vcproj: 13 13 * JavaScriptCore.vcproj/testapi/testapiCommon.vsprops: 14 15 2009-07-14 Zoltan Horvath <[email protected]> 16 17 Reviewed by Darin Adler. 18 19 Change JSCell's superclass to NoncopyableCustomAllocated 20 https://bugs.webkit.org/show_bug.cgi?id=27248 21 22 JSCell class customizes operator new, since Noncopyable will be 23 inherited from FastAllocBase, NoncopyableCustomAllocated has 24 to be used. 25 26 * runtime/JSCell.h: 14 27 15 28 2009-07-14 Zoltan Horvath <[email protected]> -
trunk/JavaScriptCore/runtime/JSCell.h
r45891 r45897 32 32 namespace JSC { 33 33 34 class JSCell : public Noncopyable {34 class JSCell : public NoncopyableCustomAllocated { 35 35 friend class GetterSetter; 36 36 friend class Heap;
Note:
See TracChangeset
for help on using the changeset viewer.