Skip to content

Commit

Permalink
[unreal]fix warn_unused_result, fix #1934
Browse files Browse the repository at this point in the history
  • Loading branch information
chexiongsheng committed Dec 5, 2024
1 parent 0ed1019 commit 006e6c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unreal/Puerts/Source/JsEnv/Private/V8InspectorImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
}
}
Expand Down

0 comments on commit 006e6c6

Please sign in to comment.