Changeset 147332 in webkit
- Timestamp:
- Apr 1, 2013, 9:18:03 AM (12 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r147330 r147332 1 2013-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 1 10 2013-04-01 Mark Hahnenberg <mhahnenberg@apple.com> 2 11 -
trunk/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreExports.def
r146698 r147332 26 26 ??0RegExpObject@JSC@@IAE@PAVJSGlobalObject@1@PAVStructure@1@PAVRegExp@1@@Z 27 27 ??0SHA1@WTF@@QAE@XZ 28 ??0SuperRegion@JSC@@QAE@XZ 28 29 ??0SourceProvider@JSC@@QAE@ABVString@WTF@@ABVTextPosition@3@@Z 29 30 ??0StringObject@JSC@@IAE@AAVJSGlobalData@1@PAVStructure@1@@Z -
trunk/Source/JavaScriptCore/heap/SuperRegion.cpp
r147330 r147332 31 31 namespace JSC { 32 32 33 const uint64_t SuperRegion::s_fixedHeapMemoryPoolSize = 4 LLU * 1024LLU* static_cast<uint64_t>(MB);33 const uint64_t SuperRegion::s_fixedHeapMemoryPoolSize = 4 * 1024 * static_cast<uint64_t>(MB); 34 34 35 35 SuperRegion::SuperRegion()
Note:
See TracChangeset
for help on using the changeset viewer.