Changeset 53438 in webkit


Ignore:
Timestamp:
Jan 18, 2010 4:50:58 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-18 Zoltan Horvath <zoltan@webkit.org>

Reviewed by Darin Adler.

Allow custom memory allocation control for UString class
https://bugs.webkit.org/show_bug.cgi?id=27831

Inherits the following class from FastAllocBase because it is
instantiated by 'new' and no need to be copyable:

class name - instantiated at:
classs UString - JavaScriptCore/runtime/UString.cpp:160

  • runtime/UString.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r53437 r53438  
     12010-01-18  Zoltan Horvath  <zoltan@webkit.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        Allow custom memory allocation control for UString class
     6        https://bugs.webkit.org/show_bug.cgi?id=27831
     7
     8        Inherits the following class from FastAllocBase because it is
     9        instantiated by 'new' and no need to be copyable:
     10
     11        class name     - instantiated at:
     12        classs UString - JavaScriptCore/runtime/UString.cpp:160
     13
     14        * runtime/UString.h:
     15
    1162010-01-18  Evan Cheng  <evan.cheng@apple.com>
    217
  • trunk/JavaScriptCore/runtime/UString.h

    r53437 r53438  
    7575    typedef Vector<char, 32> CStringBuffer;
    7676
    77     class UString {
     77    class UString : public FastAllocBase {
    7878        friend class JIT;
    7979
Note: See TracChangeset for help on using the changeset viewer.