Index: src/spaces.h |
diff --git a/src/spaces.h b/src/spaces.h |
index 1ccdacbc02e32eecd93c72a96d5edaf4a8d868dd..43f44a5c707d0c41632215943f2a553296a0f611 100644 |
--- a/src/spaces.h |
+++ b/src/spaces.h |
@@ -1085,7 +1085,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_; |
} |