Commit 2ff097e1 authored by ager@chromium.org's avatar ager@chromium.org

Minor build and code style issues.

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1541 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent c5d77733
......@@ -72,7 +72,7 @@ void** HandleScope::Extend() {
current_.limit = limit;
}
}
// If we still haven't found a slot for the handle, we extend the
// current handle scope by allocating a new handle block.
if (result == current_.limit) {
......
......@@ -5810,7 +5810,7 @@ TEST(ObjectClone) {
v8::HandleScope scope;
LocalContext env;
char* sample =
const char* sample =
"var rv = {};" \
"rv.alpha = 'hello';" \
"rv.beta = 123;" \
......@@ -5837,4 +5837,3 @@ TEST(ObjectClone) {
CHECK_EQ(v8::Integer::New(123), obj->Get(v8_str("beta")));
CHECK_EQ(v8::Integer::New(456), clone->Get(v8_str("beta")));
}
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