From c68db5a3896e918028488b0c51f69d12442154f6 Mon Sep 17 00:00:00 2001 From: "kmillikin@chromium.org" Date: Tue, 5 May 2009 10:25:55 +0000 Subject: [PATCH] Fix lint failure. TBR=ager@chromium.org git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1862 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/mark-compact.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mark-compact.cc b/src/mark-compact.cc index 3685766db2..48774ec5b5 100644 --- a/src/mark-compact.cc +++ b/src/mark-compact.cc @@ -806,7 +806,7 @@ void MarkCompactCollector::UpdateLiveObjectCount(HeapObject* obj) { live_young_objects_++; } else if (Heap::map_space()->Contains(obj)) { ASSERT(obj->IsMap()); - live_map_objects_ ++; + live_map_objects_++; } else if (Heap::old_pointer_space()->Contains(obj)) { live_old_pointer_objects_++; } else if (Heap::old_data_space()->Contains(obj)) {