From 0203a0fdaf9c7791fff7d5a5e7d354d52a194ce8 Mon Sep 17 00:00:00 2001 From: gabime Date: Tue, 8 Jan 2019 17:35:34 +0200 Subject: [PATCH] Fixed issue #948 --- include/spdlog/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/common.h b/include/spdlog/common.h index d066e903..a7d2a7de 100644 --- a/include/spdlog/common.h +++ b/include/spdlog/common.h @@ -46,7 +46,7 @@ // disable thread local on msvc 2013 #ifndef SPDLOG_NO_TLS -#if (defined(_MSC_VER) && (_MSC_VER < 1900)) +#if (defined(_MSC_VER) && (_MSC_VER < 1900)) || defined(__cplusplus_winrt) #define SPDLOG_NO_TLS 1 #endif #endif