Ignore:
Timestamp:
May 11, 2009, 7:36:20 AM (16 years ago)
Author:
Adam Roben
Message:

Windows build fixes after r43479

  • JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj: Added ParserArena to the project.
  • parser/NodeConstructors.h: Added a missing include. (JSC::ParserArenaDeletable::operator new): Marked these as inline.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/parser/NodeConstructors.h

    r43479 r43488  
    2424#include "Nodes.h"
    2525#include "Lexer.h"
     26#include "Parser.h"
    2627
    2728namespace JSC {
    2829
    29     void* ParserArenaDeletable::operator new(size_t size, JSGlobalData* globalData)
     30    inline void* ParserArenaDeletable::operator new(size_t size, JSGlobalData* globalData)
    3031    {
    3132        ParserArenaDeletable* deletable = static_cast<ParserArenaDeletable*>(fastMalloc(size));
     
    3435    }
    3536
    36     void* ParserArenaDeletable::operator new(size_t size)
     37    inline void* ParserArenaDeletable::operator new(size_t size)
    3738    {
    3839        return fastMalloc(size);
Note: See TracChangeset for help on using the changeset viewer.