Changeset 918 in webkit for trunk/JavaScriptCore/kjs/ustring.h


Ignore:
Timestamp:
Apr 1, 2002, 12:01:18 PM (23 years ago)
Author:
darin
Message:

JavaScriptCore:

Got rid of KWQDef.h because it's dangerous to have two files with
the same name and different contents.

  • JavaScriptCore.pbproj/project.pbxproj:
  • kjs/KWQDef.h: Removed.
  • kjs/ustring.h: Defines unsigned int types inline now.

WebCore:

  • src/kwq/KWQDef.h: Use KWQ_UNSIGNED_TYPES_DEFINED for compatibility with code in JavaScriptCore that has to do the same thing.
File:
1 edited

Legend:

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

    r798 r918  
    3030
    3131#ifdef APPLE_CHANGES
    32 #include <KWQDef.h>
     32#ifndef KWQ_UNSIGNED_TYPES_DEFINED
     33#define KWQ_UNSIGNED_TYPES_DEFINED
     34typedef unsigned char uchar;
     35typedef unsigned short ushort;
     36typedef unsigned uint;
     37typedef unsigned long ulong;
     38#endif
    3339#endif
    3440
Note: See TracChangeset for help on using the changeset viewer.