Changeset 46648 in webkit for trunk/JavaScriptCore/wtf
- Timestamp:
- Jul 31, 2009, 5:50:10 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/FastMalloc.cpp
r46511 r46648 1417 1417 void* TCMalloc_PageHeap::runScavengerThread(void* context) 1418 1418 { 1419 reinterpret_cast<TCMalloc_PageHeap*>(context)->scavengerThread(); 1419 static_cast<TCMalloc_PageHeap*>(context)->scavengerThread(); 1420 #if COMPILER(MSVC) 1421 // Without this, Visual Studio will complain that this method does not return a value. 1422 return 0; 1423 #endif 1420 1424 } 1421 1425
Note:
See TracChangeset
for help on using the changeset viewer.