Skip to content

Commit 131a8ca

Browse files
committed
Fix clang-format errors
1 parent 7d36f0f commit 131a8ca

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
@@ -264,7 +264,8 @@ void Driver::setDriverMode(StringRef Value) {
264264
}
265265

266266
InputArgList Driver::ParseArgStrings(ArrayRef<const char *> ArgStrings,
267-
bool UseDriverMode, bool &ContainsError) const {
267+
bool UseDriverMode,
268+
bool &ContainsError) const {
268269
llvm::PrettyStackTraceString CrashInfo("Command line argument parsing");
269270
ContainsError = false;
270271

@@ -1397,7 +1398,8 @@ Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) {
13971398
bool HasConfigFileTail = !ContainsError && CfgOptionsTail;
13981399

13991400
// All arguments, from both config file and command line.
1400-
auto UArgs = std::make_unique<InputArgList>(HasConfigFileHead ? std::move(*CfgOptionsHead) : std::move(*CLOptions));
1401+
auto UArgs = std::make_unique<InputArgList>(
1402+
HasConfigFileHead ? std::move(*CfgOptionsHead) : std::move(*CLOptions));
14011403
InputArgList &Args = *UArgs;
14021404

14031405
if (HasConfigFileHead)

0 commit comments

Comments
 (0)