Commit d84d911d by Joao Paulo Magalhaes

Tabular counters: fix missing cast on MSVC.

parent c846eedf
...@@ -45,7 +45,7 @@ bool ConsoleReporter::ReportContext(const Context& context) { ...@@ -45,7 +45,7 @@ bool ConsoleReporter::ReportContext(const Context& context) {
GetErrorStream() GetErrorStream()
<< "Color printing is only supported for stdout on windows." << "Color printing is only supported for stdout on windows."
" Disabling color printing\n"; " Disabling color printing\n";
output_options_ &= ~OO_Color; output_options_ = static_cast< OutputOptions >(output_options_ & ~OO_Color);
} }
#endif #endif
......
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