mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Manually merge remote-tracking branch 'upstream/master' into HEAD
Conflicts: lib/Frontend/CompilerInvocation.cpp lib/Frontend/ModuleInterfaceLoader.cpp lib/Serialization/ModuleFile.cpp
This commit is contained in:
@@ -455,7 +455,7 @@ public:
|
||||
while (data < limit) {
|
||||
DeclID genSigId = endian::readNext<uint32_t, little, unaligned>(data);
|
||||
int32_t nameLength = endian::readNext<int32_t, little, unaligned>(data);
|
||||
StringRef mangledName(reinterpret_cast<const char *>(data), nameLength);
|
||||
std::string mangledName(reinterpret_cast<const char *>(data), nameLength);
|
||||
data += nameLength;
|
||||
result.push_back({std::string(mangledName), genSigId});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user