Commit b2fc0598 authored by kasperl@chromium.org's avatar kasperl@chromium.org

Fix lint issues. TBR=iposva@chromium.org

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2550 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 1ce28eda
......@@ -2483,7 +2483,7 @@ class PixelArray: public Array {
static const int kHeaderSize = kExternalPointerOffset + kPointerSize;
static const int kAlignedSize = OBJECT_SIZE_ALIGN(kHeaderSize);
private:
private:
DISALLOW_IMPLICIT_CONSTRUCTORS(PixelArray);
};
......
......@@ -7666,8 +7666,7 @@ THREADED_TEST(PixelArray) {
result = CompileRun("var js_array = new Array(40);"
"js_array[0] = 77;"
"js_array;"
);
"js_array;");
CHECK_EQ(77, v8::Object::Cast(*result)->Get(v8_str("0"))->Int32Value());
result = CompileRun("pixels[1] = 23;"
......
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