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 8a89a12 commit 06a5187Copy full SHA for 06a5187
clang/lib/Driver/Driver.cpp
@@ -1273,7 +1273,8 @@ Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) {
1273
bool HasConfigFileTail = !ContainsError && CfgOptionsTail;
1274
1275
// All arguments, from both config file and command line.
1276
- InputArgList Args = HasConfigFileHead ? std::move(*CfgOptionsHead) : std::move(*CLOptions);
+ InputArgList Args =
1277
+ HasConfigFileHead ? std::move(*CfgOptionsHead) : std::move(*CLOptions);
1278
1279
if (HasConfigFileHead)
1280
for (auto *Opt : *CLOptions)
0 commit comments