UniversalStacktrace
UniversalStacktrace copied to clipboard
Mingw with win32 thread model should be handled like msvc
Mingw has two thread model: posix and win32. Posix model behaves as standard c++ compiler, but mingw of win32 model is built without std::mutex, thus behaves like msvc. So detection at line 173 should be changed.
Please submit a PR, thanks!