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 a421f18 commit 33475b1Copy full SHA for 33475b1
lldb/source/Plugins/Language/CPlusPlus/LibCxxUnorderedMap.cpp
@@ -168,7 +168,10 @@ lldb::ValueObjectSP lldb_private::formatters::
168
169
value_sp = node_sp->GetChildMemberWithName("__value_");
170
if (!value_sp) {
171
- // Newer libc++ versions wrap the `__value_` in an anonymous union.
+ // Since D101206, libc++ wraps the `__value_` in an anonymous union.
172
+ // Child 0: __hash_node_base base class
173
+ // Child 1: __hash_
174
+ // Child 2: anonymous union
175
auto anon_union_sp = node_sp->GetChildAtIndex(2);
176
if (!anon_union_sp)
177
return nullptr;
0 commit comments