mirror of
https://github.com/google/benchmark.git
synced 2025-02-18 23:30:15 +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()
|
||||
<< "Color printing is only supported for stdout on windows."
|
||||
" Disabling color printing\n";
|
||||
output_options_ &= ~OO_Color;
|
||||
output_options_ = static_cast< OutputOptions >(output_options_ & ~OO_Color);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user