chore: Thread, use auto where possible

This commit is contained in:
sithlord48
2025-04-27 12:54:31 -04:00
committed by Nick Bolton
parent a298cc84ad
commit da6e110b69

View File

@ -124,7 +124,7 @@ void *Thread::threadFunc(void *vjob)
}
// get job
IJob *job = static_cast<IJob *>(vjob);
auto *job = static_cast<IJob *>(vjob);
// run job
void *result = nullptr;