diff options
author | Rui Ueyama <ruiu@google.com> | 2019-08-02 07:22:34 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2019-08-02 07:22:34 +0000 |
commit | 4d41c332ef57281973e5e73295a56132ae12df77 (patch) | |
tree | 2fd94fb54c00a1233ce74978d3148d250bca01cd /clang/lib/Frontend/CompilerInvocation.cpp | |
parent | 206fe82be410ff8cc7619c89afdff6561275a015 (diff) | |
download | llvm-4d41c332ef57281973e5e73295a56132ae12df77.zip llvm-4d41c332ef57281973e5e73295a56132ae12df77.tar.gz llvm-4d41c332ef57281973e5e73295a56132ae12df77.tar.bz2 |
Revert r367649: Improve raw_ostream so that you can "write" colors using operator<<
This reverts commit r367649 in an attempt to unbreak Windows bots.
llvm-svn: 367658
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index d9bbe25..6bf4fbc 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -1491,10 +1491,6 @@ bool clang::ParseDiagnosticArgs(DiagnosticOptions &Opts, ArgList &Args, OPT_fno_diagnostics_show_option, DefaultShowOpt); llvm::sys::Process::UseANSIEscapeCodes(Args.hasArg(OPT_fansi_escape_codes)); - if (Opts.ShowColors) { - llvm::outs().enable_colors(); - llvm::errs().enable_colors(); - } // Default behavior is to not to show note include stacks. Opts.ShowNoteIncludeStack = false; |