Revert "Merge remote-tracking branch 'origin/master-next'"

This reverts commit 1c9b0908e6, reversing
changes made to 3eb82c1836.
This commit is contained in:
Karoy Lorentey
2020-06-08 16:48:38 -07:00
parent 1c9b0908e6
commit 68351d2110
53 changed files with 234 additions and 262 deletions

View File

@@ -954,7 +954,7 @@ public:
while (data < limit) {
DeclID genSigId = endian::readNext<uint32_t, little, unaligned>(data);
int32_t nameLength = endian::readNext<int32_t, little, unaligned>(data);
std::string mangledName(reinterpret_cast<const char *>(data), nameLength);
StringRef mangledName(reinterpret_cast<const char *>(data), nameLength);
data += nameLength;
result.push_back({mangledName, genSigId});
}