Fix some compilation warnings

This commit is contained in:
momo5502
2025-01-05 19:27:17 +01:00
parent 4f444a7227
commit 3f00cdb181
5 changed files with 19 additions and 4 deletions

View File

@@ -174,6 +174,8 @@ void forward_syscall(const syscall_context& c, NTSTATUS (*handler)(const syscall
resolve_indexed_argument<std::remove_cv_t<std::remove_reference_t<Args>>>(c.emu, index)...
};
(void)index;
const auto ret = std::apply(handler, std::move(func_args));
write_status(c, ret, ip);
}