From 0e0f6372e02d98f4313139a8030eeb47de00cad6 Mon Sep 17 00:00:00 2001 From: oaq Date: Fri, 5 Jun 2026 22:37:43 +1000 Subject: [PATCH] win32 thread local: correct definition --- src/rtklib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rtklib.h b/src/rtklib.h index 9b5f7c760..09c405b23 100644 --- a/src/rtklib.h +++ b/src/rtklib.h @@ -67,7 +67,7 @@ extern "C" { #elif defined(__GNUC__) #define THREADLOCAL __thread #elif defined(_MSC_VER) -#define THREADLOCAL __declspec(__thread) +#define THREADLOCAL __declspec(thread) #else #define THREADLOCAL #endif