diff options
Diffstat (limited to 'webkit/port/bindings/v8/v8_utility.h')
-rw-r--r-- | webkit/port/bindings/v8/v8_utility.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/webkit/port/bindings/v8/v8_utility.h b/webkit/port/bindings/v8/v8_utility.h index 5e7df97..2dd52bf 100644 --- a/webkit/port/bindings/v8/v8_utility.h +++ b/webkit/port/bindings/v8/v8_utility.h @@ -33,7 +33,8 @@ class SafeAllocation { v8::Local<v8::Object> SafeAllocation::NewInstance( v8::Handle<v8::Function> fun) { - if (fun.IsEmpty()) return v8::Local<v8::Object>(); + if (fun.IsEmpty()) + return v8::Local<v8::Object>(); AllowAllocation allow; return fun->NewInstance(); } |