[lldb][NFC] Don't specify a default argument when creating a TextDiagnosticPrinter
authorRaphael Isemann <teemperor@gmail.com>
Wed, 13 May 2020 12:55:46 +0000 (14:55 +0200)
committerRaphael Isemann <teemperor@gmail.com>
Wed, 13 May 2020 13:55:51 +0000 (15:55 +0200)
lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp

index e7afbe5..8885cbc 100644 (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) {