| Index: src/spaces.h
|
| diff --git a/src/spaces.h b/src/spaces.h
|
| index e0ffe0e181afbb967210823281907ca07b362eda..10a803e2ea24ac8f1847884374590e3a4e2dd874 100644
|
| --- a/src/spaces.h
|
| +++ b/src/spaces.h
|
| @@ -1092,7 +1092,7 @@ class MemoryAllocator {
|
|
|
| // Returns an indication of whether a pointer is in a space that has
|
| // been allocated by this MemoryAllocator.
|
| - V8_INLINE(bool IsOutsideAllocatedSpace(const void* address)) const {
|
| + V8_INLINE bool IsOutsideAllocatedSpace(const void* address) const {
|
| return address < lowest_ever_allocated_ ||
|
| address >= highest_ever_allocated_;
|
| }
|
|
|