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) {
262
262
}
263
263
264
264
InputArgList Driver::ParseArgStrings (ArrayRef<const char *> ArgStrings,
265
- bool UseDriverMode, bool &ContainsError) const {
265
+ bool UseDriverMode,
266
+ bool &ContainsError) const {
266
267
llvm::PrettyStackTraceString CrashInfo (" Command line argument parsing" );
267
268
ContainsError = false ;
268
269
@@ -1252,8 +1253,8 @@ Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) {
1252
1253
bool HasConfigFile = !ContainsError && (CfgOptions.get () != nullptr );
1253
1254
1254
1255
// 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)));
1257
1258
InputArgList &Args = *UArgs;
1258
1259
1259
1260
if (HasConfigFile)
You can’t perform that action at this time.
0 commit comments