Ignore:
Timestamp:
Nov 29, 2008, 4:39:57 PM (16 years ago)
Author:
Antti Koivisto
Message:

2008-11-29 Antti Koivisto <Antti Koivisto>

Fix debug build by adding a stub method.

  • wtf/FastMalloc.cpp: (WTF::fastMallocStatistics):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/FastMalloc.cpp

    r38844 r38848  
    233233
    234234void releaseFastMallocFreeMemory() { }
     235   
     236FastMallocStatistics fastMallocStatistics()
     237{
     238    FastMallocStatistics statistics;
     239    statistics.heapSize = 0;
     240    statistics.freeSize = 0;
     241    statistics.returnedSize = 0;
     242    return statistics;
     243}
    235244
    236245#if HAVE(VIRTUALALLOC)
Note: See TracChangeset for help on using the changeset viewer.