Replace implicit function-to-pointer decay with explicit &util::TraceThread expressions in two thread spawn call sites.
Why:
While both forms work the same way, using explicit & is slightly more friendly to the compile, makes the code easy to understand what is happening, and the rest of the project already follows this style for thread spawns. This aligns these two occurrences with that convention.
All threads which uses util::TraceThread to spawn now use the explicit & form
Verified no remaining inconsistent spawns:
0# no remaining inconsistent spawns
1$ grep -rn "std::thread(util::TraceThread" src/ | wc -l
20
3# all occurrences now use explicit & form
4$ grep -rn "util::TraceThread" src/