Commit b5224130 authored by gabime's avatar gabime

Replaced SPDLOG_DISABLE_TID_CACHING with SPDLOG_NO_TLS

parent 8a0fc92f
...@@ -41,6 +41,13 @@ ...@@ -41,6 +41,13 @@
#define SPDLOG_DEPRECATED #define SPDLOG_DEPRECATED
#endif #endif
// disable thread local on msvc 2013
#ifndef SPDLOG_NO_TLS
#if (defined(_MSC_VER) && (_MSC_VER < 1900))
#define SPDLOG_NO_TLS 1
#endif
#endif
#include "spdlog/fmt/fmt.h" #include "spdlog/fmt/fmt.h"
namespace spdlog { namespace spdlog {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment