Skip to content

Commit 1209946

Browse files
committed
Fix clang-format errors
1 parent b2de258 commit 1209946

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

clang/lib/Driver/Driver.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,8 @@ void Driver::setDriverMode(StringRef Value) {
262262
}
263263

264264
InputArgList Driver::ParseArgStrings(ArrayRef<const char *> ArgStrings,
265-
bool UseDriverMode, bool &ContainsError) const {
265+
bool UseDriverMode,
266+
bool &ContainsError) const {
266267
llvm::PrettyStackTraceString CrashInfo("Command line argument parsing");
267268
ContainsError = false;
268269

@@ -1252,8 +1253,8 @@ Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) {
12521253
bool HasConfigFile = !ContainsError && (CfgOptions.get() != nullptr);
12531254

12541255
// All arguments, from both config file and command line.
1255-
auto UArgs = std::make_unique<InputArgList>(std::move(HasConfigFile ? std::move(*CfgOptions)
1256-
: std::move(*CLOptions)));
1256+
auto UArgs = std::make_unique<InputArgList>(std::move(
1257+
HasConfigFile ? std::move(*CfgOptions) : std::move(*CLOptions)));
12571258
InputArgList &Args = *UArgs;
12581259

12591260
if (HasConfigFile)

0 commit comments

Comments
 (0)