Skip to content

Commit b05e832

Browse files
committed
fix: build
1 parent 3b100d0 commit b05e832

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NativeScript/runtime/Runtime.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ void DisposeIsolateWhenPossible(Isolate* isolate) {
203203
tns::ToV8String(isolate, "queueMicrotask: callback must be a function")));
204204
return;
205205
}
206-
Local<Function> cb = info[0].As<Function>();
206+
v8::Local<v8::Function> cb = info[0].As<v8::Function>();
207207
isolate->EnqueueMicrotask(cb);
208208
});
209209
globalTemplate->Set(tns::ToV8String(isolate, "queueMicrotask"), qmtTemplate);

0 commit comments

Comments
 (0)