Skip to content

Commit 156fa36

Browse files
committed
Fix clang-format errors
1 parent 2fe4189 commit 156fa36

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

clang/lib/Driver/Driver.cpp

Lines changed: 4 additions & 2 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

@@ -1272,7 +1273,8 @@ Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) {
12721273
bool HasConfigFileTail = !ContainsError && CfgOptionsTail;
12731274

12741275
// All arguments, from both config file and command line.
1275-
auto UArgs = std::make_unique<InputArgList>(HasConfigFileHead ? std::move(*CfgOptionsHead) : std::move(*CLOptions));
1276+
auto UArgs = std::make_unique<InputArgList>(
1277+
HasConfigFileHead ? std::move(*CfgOptionsHead) : std::move(*CLOptions));
12761278
InputArgList &Args = *UArgs;
12771279

12781280
if (HasConfigFileHead)

0 commit comments

Comments
 (0)