From: jkummerow@chromium.org Date: Tue, 16 Apr 2013 14:24:31 +0000 (+0000) Subject: Build error fix after r14283. X-Git-Tag: upstream/4.7.83~14566 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f0bd0700873c3bab3165dee726b5699e5b8974a8;p=platform%2Fupstream%2Fv8.git Build error fix after r14283. BUG=NONE Review URL: https://codereview.chromium.org/14060010 Patch from Marja Hölttä . git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@14286 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/heap-snapshot-generator.cc b/src/heap-snapshot-generator.cc index f167886..6e03b0c 100644 --- a/src/heap-snapshot-generator.cc +++ b/src/heap-snapshot-generator.cc @@ -2001,7 +2001,7 @@ void NativeObjectsExplorer::FillImplicitReferences() { int representative_objects_index = 0; UniqueId current_group_id(0); - size_t current_group_start = 0; + int current_group_start = 0; for (int i = 0; i <= ref_groups->length(); ++i) { if (i == 0) current_group_id = ref_groups->at(i).id; diff --git a/src/mark-compact.cc b/src/mark-compact.cc index 721ce92..165c03f 100644 --- a/src/mark-compact.cc +++ b/src/mark-compact.cc @@ -1948,7 +1948,7 @@ void MarkCompactCollector::MarkImplicitRefGroups() { int representative_objects_index = 0; UniqueId current_group_id(0); - size_t current_group_start = 0; + int current_group_start = 0; for (int i = 0; i <= ref_groups->length(); ++i) { if (i == 0) current_group_id = ref_groups->at(i).id;