diff --git a/src/spdlog.cpp b/src/spdlog.cpp index e5994bde..b3cf0b3c 100644 --- a/src/spdlog.cpp +++ b/src/spdlog.cpp @@ -12,11 +12,12 @@ namespace spdlog { -#ifndef SPDLOG_DISABLE_GLOBAL_LOGGER + static std::shared_ptr s_context = +#ifndef SPDLOG_DISABLE_GLOBAL_LOGGER std::make_unique(std::make_unique("", std::make_unique())); #else -static std::shared_ptr s_context = std::make_unique(); + std::make_unique(); // empty context #endif void set_context(std::shared_ptr context) { s_context = std::move(context); }