Avoid thread name checking testing on MacOS

It's not working!
This commit is contained in:
William S Fulton 2018-12-21 08:15:59 +00:00
commit 1faf5a879f

View file

@ -118,8 +118,12 @@ extern "C" {
static bool namedThread() {
%#ifdef _WIN32
return false;
%#else
%#ifdef __APPLE__
return false;
%#else
return true;
%#endif
%#endif
}