summaryrefslogtreecommitdiff
path: root/src/common/thread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/thread.cpp')
-rw-r--r--src/common/thread.cpp6
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)
74void 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