[lldb][NFC] Don't specify a default argument when creating a TextDiagnosticPrinter

This commit is contained in:
Raphael Isemann 2020-05-13 14:55:46 +02:00
parent 6d2599e4f7
commit 2fe6672498
1 changed files with 1 additions and 2 deletions

View File

@ -162,8 +162,7 @@ public:
m_options->ShowPresumedLoc = true;
m_options->ShowLevel = false;
m_os.reset(new llvm::raw_string_ostream(m_output));
m_passthrough.reset(
new clang::TextDiagnosticPrinter(*m_os, m_options, false));
m_passthrough.reset(new clang::TextDiagnosticPrinter(*m_os, m_options));
}
void ResetManager(DiagnosticManager *manager = nullptr) {