diff --git a/unreal/Puerts/Source/JsEnv/Private/V8InspectorImpl.cpp b/unreal/Puerts/Source/JsEnv/Private/V8InspectorImpl.cpp index 1881c76e22..901d917bfa 100644 --- a/unreal/Puerts/Source/JsEnv/Private/V8InspectorImpl.cpp +++ b/unreal/Puerts/Source/JsEnv/Private/V8InspectorImpl.cpp @@ -423,7 +423,7 @@ bool V8InspectorClientImpl::Tick(float /* DeltaTime */) v8::Context::Scope ContextScope(LocalContext); v8::TryCatch TryCatch(Isolate); - MicroTasksRunner.Get(Isolate)->Call(LocalContext, LocalContext->Global(), 0, nullptr); + (void) (MicroTasksRunner.Get(Isolate)->Call(LocalContext, LocalContext->Global(), 0, nullptr)); } } }