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 e78a1f4 commit 4004f65Copy full SHA for 4004f65
lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
@@ -2265,7 +2265,8 @@ void SymbolFileNativePDB::BuildParentMap() {
2265
}
2266
for (TypeIndex fwd : fwd_keys) {
2267
TypeIndex full = forward_to_full[fwd];
2268
- m_parent_types[full] = m_parent_types[fwd];
+ TypeIndex parent_idx = m_parent_types[fwd];
2269
+ m_parent_types[full] = parent_idx;
2270
2271
for (TypeIndex full : full_keys) {
2272
TypeIndex fwd = full_to_forward[full];
0 commit comments