Changeset 115586 in webkit for trunk/Source/JavaScriptCore


Ignore:
Timestamp:
Apr 28, 2012, 3:50:02 PM (13 years ago)
Author:
[email protected]
Message:

Try to fix the Qt build.

  • heap/Heap.cpp:

(JSC::Heap::lastChanceToFinalize):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r115580 r115586  
     12012-04-28  Sam Weinig  <[email protected]>
     2
     3        Try to fix the Qt build.
     4
     5        * heap/Heap.cpp:
     6        (JSC::Heap::lastChanceToFinalize):
     7
    182012-04-28  Geoffrey Garen  <[email protected]>
    29
  • trunk/Source/JavaScriptCore/heap/Heap.cpp

    r115580 r115586  
    367367    // FIXME: Make this a release-mode crash once we're sure no one's doing this.
    368368    if (size_t size = m_protectedValues.size())
    369         WTFLogAlways("ERROR: JavaScriptCore heap deallocated while %ld values were still protected", size);
     369        WTFLogAlways("ERROR: JavaScriptCore heap deallocated while %ld values were still protected", static_cast<unsigned long>(size));
    370370
    371371    m_weakSet.finalizeAll();
Note: See TracChangeset for help on using the changeset viewer.