Fix presubmit error for recent revision.

R=fschneider@chromium.org

Review URL: http://codereview.chromium.org/8612003

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@10038 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent d7e09988
...@@ -386,7 +386,7 @@ class FastCloneShallowObjectStub : public CodeStub { ...@@ -386,7 +386,7 @@ class FastCloneShallowObjectStub : public CodeStub {
// Maximum number of properties in copied object. // Maximum number of properties in copied object.
static const int kMaximumClonedProperties = 6; static const int kMaximumClonedProperties = 6;
FastCloneShallowObjectStub(int length) : length_(length) { explicit FastCloneShallowObjectStub(int length) : length_(length) {
ASSERT_GE(length_, 0); ASSERT_GE(length_, 0);
ASSERT_LE(length_, kMaximumClonedProperties); ASSERT_LE(length_, kMaximumClonedProperties);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment