Changeset 1852 in webkit for trunk/JavaScriptCore/kjs/ustring.cpp


Ignore:
Timestamp:
Aug 16, 2002, 12:21:57 PM (23 years ago)
Author:
darin
Message:

Fix the Development build.

  • kjs/object.cpp: Take out a use of ReferenceType.
  • kjs/ustring.h: Added a bit more inlining.
  • kjs/ustring.cpp: Moved the function out of here.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/ustring.cpp

    r1825 r1852  
    114114}
    115115
    116 UChar UChar::null;
     116UChar UChar::null((char)0);
    117117UString::Rep UString::Rep::null = { 0, 0, 0, 1 };
    118118UString::Rep UString::Rep::empty = { 0, 0, 0, 1 };
     
    121121static char *statBuffer = 0;
    122122static int statBufferSize = 0;
    123 
    124 UChar::UChar(const UCharReference &c)
    125     : uc( c.unicode() )
    126 {
    127 }
    128123
    129124UChar UChar::toLower() const
Note: See TracChangeset for help on using the changeset viewer.