Changeset 147332 in webkit


Ignore:
Timestamp:
Apr 1, 2013, 9:18:03 AM (12 years ago)
Author:
mhahnenberg@apple.com
Message:

More build fallout fixes.

Unreviewed build fix.

  • JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreExports.def: Add new export symbols.
  • heap/SuperRegion.cpp: Windows didn't like "LLU".
Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r147330 r147332  
     12013-04-01  Mark Hahnenberg  <mhahnenberg@apple.com>
     2
     3        More build fallout fixes.
     4
     5        Unreviewed build fix.
     6
     7        * JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreExports.def: Add new export symbols.
     8        * heap/SuperRegion.cpp: Windows didn't like "LLU".
     9
    1102013-04-01  Mark Hahnenberg  <mhahnenberg@apple.com>
    211
  • trunk/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreExports.def

    r146698 r147332  
    2626    ??0RegExpObject@JSC@@IAE@PAVJSGlobalObject@1@PAVStructure@1@PAVRegExp@1@@Z
    2727    ??0SHA1@WTF@@QAE@XZ
     28    ??0SuperRegion@JSC@@QAE@XZ
    2829    ??0SourceProvider@JSC@@QAE@ABVString@WTF@@ABVTextPosition@3@@Z
    2930    ??0StringObject@JSC@@IAE@AAVJSGlobalData@1@PAVStructure@1@@Z
  • trunk/Source/JavaScriptCore/heap/SuperRegion.cpp

    r147330 r147332  
    3131namespace JSC {
    3232
    33 const uint64_t SuperRegion::s_fixedHeapMemoryPoolSize = 4LLU * 1024LLU * static_cast<uint64_t>(MB);
     33const uint64_t SuperRegion::s_fixedHeapMemoryPoolSize = 4 * 1024 * static_cast<uint64_t>(MB);
    3434
    3535SuperRegion::SuperRegion()
Note: See TracChangeset for help on using the changeset viewer.