You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.The text was updated successfully, but these errors were encountered: