diff --git a/include/spdlog/cfg/env-inl.h b/include/spdlog/cfg/env-inl.h index 81b9adb1..54db9dce 100644 --- a/include/spdlog/cfg/env-inl.h +++ b/include/spdlog/cfg/env-inl.h @@ -66,7 +66,7 @@ SPDLOG_INLINE std::unordered_map extract_key_vals_(con { std::string token; std::istringstream token_stream(str); - std::unordered_map rv; + std::unordered_map rv{}; while (std::getline(token_stream, token, ',')) { if (token.empty()) @@ -107,7 +107,6 @@ inline details::registry::logger_levels extract_levels_(const std::string& input return rv; } - SPDLOG_INLINE void load_levels() { auto levels = extract_levels_(details::os::getenv("SPDLOG_LEVEL"));