Changeset 34425 in webkit for trunk/JavaScriptCore/kjs


Ignore:
Timestamp:
Jun 7, 2008, 3:59:39 AM (17 years ago)
Author:
[email protected]
Message:

More build fixes.

  • kjs/JSGlobalData.cpp: Fixed an included file name for case-sensitive file systems, fixed JSGlobalData::threadInstance() for non-multithreaded builds.
File:
1 edited

Legend:

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

    r34412 r34425  
    3636#include "lookup.h"
    3737#include "nodes.h"
    38 #include "parser.h"
     38#include "Parser.h"
    3939
    4040#if USE(MULTIPLE_THREADS)
     
    114114    return *sharedInstance;
    115115#else
    116     return globalSharedInstance();
     116    static JSGlobalData sharedInstance;
     117    return sharedInstance;
    117118#endif
    118119}
Note: See TracChangeset for help on using the changeset viewer.