Ignore:
Timestamp:
Oct 8, 2008, 2:10:04 AM (17 years ago)
Author:
Simon Hausmann
Message:

2008-10-08 Prasanth Ullattil <[email protected]>

Reviewed by Simon.

Fix compilation errors on VS2008 64Bit

File:
1 edited

Legend:

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

    r37353 r37410  
    424424#elif PLATFORM(WIN_OS) && PLATFORM(X86_64) && COMPILER(MSVC)
    425425    PNT_TIB64 pTib = reinterpret_cast<PNT_TIB64>(NtCurrentTeb());
    426     return static_cast<void*>(pTib->StackBase);
     426    return reinterpret_cast<void*>(pTib->StackBase);
    427427#elif PLATFORM(WIN_OS) && PLATFORM(X86) && COMPILER(GCC)
    428428    // offset 0x18 from the FS segment register gives a pointer to
Note: See TracChangeset for help on using the changeset viewer.