mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
More StringRef -> std::string explicit conversions
This commit is contained in:
@@ -5126,7 +5126,7 @@ void Serializer::writeAST(ModuleOrSourceFile DC) {
|
||||
DerivativeFunctionConfigTable derivativeConfigs;
|
||||
for (auto entry : uniquedDerivativeConfigs) {
|
||||
for (auto config : entry.second) {
|
||||
auto paramIndices = config.first.str();
|
||||
std::string paramIndices = config.first.str().str();
|
||||
auto genSigID = addGenericSignatureRef(config.second);
|
||||
derivativeConfigs[entry.first].push_back({paramIndices, genSigID});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user