Unverified Commit c1af0a3f authored by Gabi Melman's avatar Gabi Melman Committed by GitHub

Merge pull request #1882 from imsherlock/v1.x

add default cases
parents 44e1f9f6 bb5e1ee2
...@@ -106,6 +106,8 @@ SPDLOG_INLINE void ansicolor_sink<ConsoleMutex>::set_color_mode(color_mode mode) ...@@ -106,6 +106,8 @@ SPDLOG_INLINE void ansicolor_sink<ConsoleMutex>::set_color_mode(color_mode mode)
case color_mode::never: case color_mode::never:
should_do_colors_ = false; should_do_colors_ = false;
return; return;
default:
should_do_colors_ = false;
} }
} }
......
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