We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46b830b commit a921766Copy full SHA for a921766
clang/lib/Driver/Driver.cpp
@@ -1398,7 +1398,8 @@ Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) {
1398
bool HasConfigFileTail = !ContainsError && CfgOptionsTail;
1399
1400
// All arguments, from both config file and command line.
1401
- InputArgList Args = HasConfigFileHead ? std::move(*CfgOptionsHead) : std::move(*CLOptions);
+ InputArgList Args =
1402
+ HasConfigFileHead ? std::move(*CfgOptionsHead) : std::move(*CLOptions);
1403
1404
if (HasConfigFileHead)
1405
for (auto *Opt : *CLOptions)
0 commit comments