Fixed issue #948

This commit is contained in:
gabime 2019-01-08 17:35:34 +02:00
parent 112a7ada74
commit 0203a0fdaf
1 changed files with 1 additions and 1 deletions

View File

@ -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