From d0b263c37bbb7aee99a6ea2fbf9bfa8a378eed4e Mon Sep 17 00:00:00 2001 From: "feng@chromium.org" Date: Tue, 28 Oct 2008 17:32:01 +0000 Subject: [PATCH] Fix the lint error. TBR=iposva Review URL: http://codereview.chromium.org/8664 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@629 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/runtime.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime.cc b/src/runtime.cc index 335a521201..1a15ab0adf 100644 --- a/src/runtime.cc +++ b/src/runtime.cc @@ -4009,7 +4009,7 @@ class ArrayConcatVisitor { void visit(uint32_t i, Handle elm) { uint32_t index = i + index_offset_; if (index >= index_limit_) return; - + if (fast_elements_) { ASSERT(index < static_cast(storage_->length())); storage_->set(index, *elm);