File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -264,7 +264,8 @@ void Driver::setDriverMode(StringRef Value) {
264264}
265265
266266InputArgList 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)
You can’t perform that action at this time.
0 commit comments