29 lines
711 B
Diff
29 lines
711 B
Diff
|
From 98964b89af66a4b8c76db4891263e845ae947bfa Mon Sep 17 00:00:00 2001
|
||
|
Date: Fri, 22 Jan 2016 18:22:10 +0300
|
||
|
Subject: [PATCH] Bug 81747
|
||
|
|
||
|
---
|
||
|
src/common/threadinfo.cpp | 6 ++++++
|
||
|
1 file changed, 6 insertions(+)
|
||
|
|
||
|
diff --git a/src/common/threadinfo.cpp b/src/common/threadinfo.cpp
|
||
|
index e77682d..9a7e807 100644
|
||
|
--- a/src/common/threadinfo.cpp
|
||
|
+++ b/src/common/threadinfo.cpp
|
||
|
@@ -48,6 +48,12 @@ inline wxAllThreadInfos& GetAllThreadInfos()
|
||
|
}
|
||
|
|
||
|
// Pointer to the current thread's instance
|
||
|
+
|
||
|
+
|
||
|
+#if (defined __LCC__) && (__LCC__ <= 120) // bug 81747
|
||
|
+static
|
||
|
+#endif
|
||
|
+
|
||
|
inline wxTLS_TYPE_REF(wxThreadSpecificInfo*) GetThisThreadInfo()
|
||
|
{
|
||
|
static wxTLS_TYPE(wxThreadSpecificInfo*) s_thisThreadInfo;
|
||
|
--
|
||
|
2.16.4
|
||
|
|