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 @@ -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
@@ -1272,7 +1273,8 @@ Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) {
1272
1273
bool HasConfigFileTail = !ContainsError && CfgOptionsTail;
1273
1274
1274
1275
// 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));
1276
1278
InputArgList &Args = *UArgs;
1277
1279
1278
1280
if (HasConfigFileHead)
You can’t perform that action at this time.
0 commit comments