| Index: src/zone.h
|
| ===================================================================
|
| --- src/zone.h (revision 8778)
|
| +++ src/zone.h (working copy)
|
| @@ -74,6 +74,8 @@
|
|
|
| inline void adjust_segment_bytes_allocated(int delta);
|
|
|
| + inline Isolate* isolate() { return isolate_; }
|
| +
|
| static unsigned allocation_size_;
|
|
|
| private:
|
| @@ -164,7 +166,7 @@
|
| class ZoneListAllocationPolicy {
|
| public:
|
| // Allocate 'size' bytes of memory in the zone.
|
| - INLINE(static void* New(int size));
|
| + static void* New(int size);
|
|
|
| // De-allocation attempts are silently ignored.
|
| static void Delete(void* p) { }
|
|
|