Index: src/factory.h |
diff --git a/src/factory.h b/src/factory.h |
index c94a12643435e6e0b745228f1779cdb1189d2154..cb9c301122a2fe5d9591a969fb4e60a1a40d95a0 100644 |
--- a/src/factory.h |
+++ b/src/factory.h |
@@ -507,9 +507,8 @@ class Factory V8_FINAL { |
// Installs interceptors on the instance. 'desc' is a function template, |
// and instance is an object instance created by the function of this |
// function template. |
- void ConfigureInstance(Handle<FunctionTemplateInfo> desc, |
- Handle<JSObject> instance, |
- bool* pending_exception); |
+ MUST_USE_RESULT MaybeHandle<FunctionTemplateInfo> ConfigureInstance( |
+ Handle<FunctionTemplateInfo> desc, Handle<JSObject> instance); |
#define ROOT_ACCESSOR(type, name, camel_name) \ |
inline Handle<type> name() { \ |