From 5f8877b665bfabc863e62f8611bb67a92cd349f4 Mon Sep 17 00:00:00 2001 From: Shen-Ta Hsieh Date: Thu, 21 Jul 2022 20:24:01 +0800 Subject: [PATCH] Explicitly casting level_enum to size_t. See commit 2a4c34b8785137eba9da7eb4cbb28b4162218272 --- include/spdlog/sinks/wincolor_sink-inl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/spdlog/sinks/wincolor_sink-inl.h b/include/spdlog/sinks/wincolor_sink-inl.h index be3d80a2..8311929e 100644 --- a/include/spdlog/sinks/wincolor_sink-inl.h +++ b/include/spdlog/sinks/wincolor_sink-inl.h @@ -45,7 +45,7 @@ template void SPDLOG_INLINE wincolor_sink::set_color(level::level_enum level, std::uint16_t color) { std::lock_guard lock(mutex_); - colors_[level] = color; + colors_[static_cast(level)] = color; } template @@ -66,7 +66,7 @@ void SPDLOG_INLINE wincolor_sink::log(const details::log_msg &msg) // before color range print_range_(formatted, 0, msg.color_range_start); // in color range - auto orig_attribs = static_cast(set_foreground_color_(colors_[msg.level])); + auto orig_attribs = static_cast(set_foreground_color_(colors_[static_cast(msg.level)])); print_range_(formatted, msg.color_range_start, msg.color_range_end); // reset to orig colors ::SetConsoleTextAttribute(static_cast(out_handle_), orig_attribs);