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