feat: unicode progress mode works on Windows

This commit is contained in:
Marcus Holland-Moritz 2024-01-20 21:07:14 +01:00
parent 1e319bbf62
commit cb737a5a58

View File

@ -97,18 +97,10 @@ const std::map<std::string, console_writer::progress_mode> progress_modes{
{"none", console_writer::NONE},
{"simple", console_writer::SIMPLE},
{"ascii", console_writer::ASCII},
#ifndef _WIN32
{"unicode", console_writer::UNICODE},
#endif
};
const std::string default_progress_mode =
#ifdef _WIN32
"ascii"
#else
"unicode"
#endif
;
const std::string default_progress_mode = "unicode";
const std::map<std::string, debug_filter_mode> debug_filter_modes{
{"included", debug_filter_mode::INCLUDED},