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.
2 parents 008273b + 5964d4b commit 616a404Copy full SHA for 616a404
lib/Frontend/ModuleInterfaceLoader.cpp
@@ -1347,8 +1347,9 @@ void InterfaceSubContextDelegateImpl::inheritOptionsForBuildingInterface(
1347
SearchPathOpts.DeserializedPathRecoverer);
1348
SearchPathOpts.DeserializedPathRecoverer
1349
.forEachPair([&](StringRef lhs, StringRef rhs) {
1350
- GenericArgs.push_back(ArgSaver.save(llvm::Twine("-serialized-path-obfuscate ")
1351
- + lhs + "=" + rhs).str());
+ GenericArgs.push_back("-serialized-path-obfuscate");
+ std::string pair = (llvm::Twine(lhs) + "=" + rhs).str();
1352
+ GenericArgs.push_back(ArgSaver.save(pair));
1353
});
1354
}
1355
0 commit comments