Chromium Code Reviews| Index: src/api.cc |
| =================================================================== |
| --- src/api.cc (revision 2114) |
| +++ src/api.cc (working copy) |
| @@ -416,7 +416,8 @@ |
| void** v8::HandleScope::CreateHandle(void* value) { |
| - return i::HandleScope::CreateHandle(value); |
| + return reinterpret_cast<void**>( |
| + i::HandleScope::CreateHandle(reinterpret_cast<i::Object*>(value))); |
| } |