Index: src/heap.h |
diff --git a/src/heap.h b/src/heap.h |
index 1615db5527dbcb8fc036c1a2f9a895051b303910..b8cbceb60a808c00664f6ec1583939cbb7130865 100644 |
--- a/src/heap.h |
+++ b/src/heap.h |
@@ -2840,7 +2840,7 @@ class IntrusiveMarking { |
}; |
-#if defined(DEBUG) || defined(LIVE_OBJECT_LIST) |
+#ifdef DEBUG |
// Helper class for tracing paths to a search target Object from all roots. |
// The TracePathFrom() method can be used to trace paths from a specific |
// object to the search target object. |
@@ -2897,7 +2897,7 @@ class PathTracer : public ObjectVisitor { |
private: |
DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
}; |
-#endif // DEBUG || LIVE_OBJECT_LIST |
+#endif // DEBUG |
} } // namespace v8::internal |