Changeset 13091 in webkit for trunk/JavaScriptCore/kjs


Ignore:
Timestamp:
Mar 2, 2006, 2:10:54 AM (19 years ago)
Author:
mjs
Message:

Reviewed by Eric.

  • fix windows build, broken by my last patch
  • kjs/JSImmediate.cpp:
  • kjs/identifier.cpp:
  • kxmlcore/FastMalloc.cpp:
  • kxmlcore/Platform.h:
Location:
trunk/JavaScriptCore/kjs
Files:
2 edited

Legend:

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

    r13054 r13091  
    2020 */
    2121
     22#include "config.h"
    2223#include "JSImmediate.h"
    2324#include "kxmlcore/Assertions.h"
  • trunk/JavaScriptCore/kjs/identifier.cpp

    r13089 r13091  
    1919 *
    2020 */
     21
     22#include "config.h"
     23#include "identifier.h"
    2124
    2225// For JavaScriptCore we need to avoid having static constructors.
     
    2831#if !PLATFORM(WIN_OS) // can't get this to compile on Visual C++ yet
    2932#define AVOID_STATIC_CONSTRUCTORS 1
     33#else
     34#define AVOID_STATIC_CONSTRUCTORS 0
    3035#endif
    3136
     
    3338#define KJS_IDENTIFIER_HIDE_GLOBALS 1
    3439#endif
    35 
    36 #include "config.h"
    37 #include "identifier.h"
    3840
    3941#include <kxmlcore/FastMalloc.h>
Note: See TracChangeset for help on using the changeset viewer.