mirror of
https://github.com/google/benchmark.git
synced 2025-02-21 00:30:13 +08:00
Tabular counters: fix missing cast on MSVC.
This commit is contained in:
parent
c846eedfeb
commit
d84d911d37
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user