Changeset 12949 in webkit for trunk/JavaScriptCore/kxmlcore/FastMalloc.cpp
- Timestamp:
- Feb 23, 2006, 11:52:25 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kxmlcore/FastMalloc.cpp
r12897 r12949 976 976 void clear_lowwatermark() { lowater_ = length_; } 977 977 978 void Push(void* ptr) {978 ALWAYS_INLINE void Push(void* ptr) { 979 979 *(reinterpret_cast<void**>(ptr)) = list_; 980 980 list_ = ptr; … … 982 982 } 983 983 984 void* Pop() {984 ALWAYS_INLINE void* Pop() { 985 985 ASSERT(list_ != NULL); 986 986 void* result = list_;
Note:
See TracChangeset
for help on using the changeset viewer.