diff options
Diffstat (limited to 'src/common/thread.cpp')
| -rw-r--r-- | src/common/thread.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/common/thread.cpp b/src/common/thread.cpp index 0cd2d10bf..c9684aed9 100644 --- a/src/common/thread.cpp +++ b/src/common/thread.cpp | |||
| @@ -70,6 +70,12 @@ void SetCurrentThreadName(const char* name) { | |||
| 70 | } | 70 | } |
| 71 | #endif | 71 | #endif |
| 72 | 72 | ||
| 73 | #if defined(_WIN32) | ||
| 74 | void SetCurrentThreadName(const char* name) { | ||
| 75 | // Do Nothing on MingW | ||
| 76 | } | ||
| 77 | #endif | ||
| 78 | |||
| 73 | #endif | 79 | #endif |
| 74 | 80 | ||
| 75 | } // namespace Common | 81 | } // namespace Common |