Ignore:
Timestamp:
Jun 27, 2008, 4:31:09 PM (17 years ago)
Author:
[email protected]
Message:

2008-06-27 Adele Peterson <[email protected]>

Reviewed by Geoff.

Build fixes.

  • JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj:
  • VM/RegisterFile.h: (KJS::RegisterFile::RegisterFile):
  • kjs/JSGlobalObject.cpp:
  • kjs/collector.cpp:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/VM/RegisterFile.h

    r34838 r34839  
    123123#elif HAVE(VIRTUALALLOC)
    124124            // FIXME: Use VirtualAlloc, and commit pages as we go.
    125             m_buffer = fastMalloc(bufferLength);
     125            m_buffer = static_cast<Register*>(fastMalloc(bufferLength));
    126126#else
    127127            #error "Don't know how to reserve virtual memory on this platform."
Note: See TracChangeset for help on using the changeset viewer.