Skip to content

Commit f7cffbe

Browse files
Michael137github-actions[bot]
authored andcommitted
Automerge: [lldb][Expression][NFC] Run clang-format on ClangExpressionParser.cpp and ClangModulesDeclVendor.cpp
This wasn't addressed as part of llvm/llvm-project#147727
2 parents 4df786b + 2d030b0 commit f7cffbe

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -831,7 +831,8 @@ ClangExpressionParser::ClangExpressionParser(
831831
// FIXME: We shouldn't need to do this, the target should be immutable once
832832
// created. This complexity should be lifted elsewhere.
833833
m_compiler->getTarget().adjust(m_compiler->getDiagnostics(),
834-
m_compiler->getLangOpts(), /*AuxTarget=*/nullptr);
834+
m_compiler->getLangOpts(),
835+
/*AuxTarget=*/nullptr);
835836

836837
// 5. Set up the diagnostic buffer for reporting errors
837838
auto diag_mgr = new ClangDiagnosticManagerAdapter(

lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,8 @@ ClangModulesDeclVendor::Create(Target &target) {
757757
if (!instance->hasTarget())
758758
return nullptr;
759759

760-
instance->getTarget().adjust(*diagnostics_engine, instance->getLangOpts(), /*AuxTarget=*/nullptr);
760+
instance->getTarget().adjust(*diagnostics_engine, instance->getLangOpts(),
761+
/*AuxTarget=*/nullptr);
761762

762763
if (!action->BeginSourceFile(*instance,
763764
instance->getFrontendOpts().Inputs[0]))

0 commit comments

Comments
 (0)