Changeset 46877 in webkit for trunk/JavaScriptCore
- Timestamp:
- Aug 6, 2009, 6:09:14 PM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r46876 r46877 1 2009-08-06 Zoltan Horvath <[email protected]> 2 3 Reviewed by Adam Barth. 4 5 Allow custom memory allocation control for Noncopyable class 6 https://bugs.webkit.org/show_bug.cgi?id=27879 7 8 Several classes which inherited from Noncopyable are instantiated by 9 operator new, so Noncopyable class has been inherited from FastAllocBase. 10 11 * wtf/Noncopyable.h: 12 1 13 2009-08-06 Mark Rowe <[email protected]> 2 14 -
trunk/JavaScriptCore/wtf/Noncopyable.h
r45883 r46877 29 29 namespace WTFNoncopyable { 30 30 31 class Noncopyable {31 class Noncopyable : public FastAllocBase { 32 32 Noncopyable(const Noncopyable&); 33 33 Noncopyable& operator=(const Noncopyable&);
Note:
See TracChangeset
for help on using the changeset viewer.