]> git.lizzy.rs Git - rust.git/blobdiff - src/etc/lldb_providers.py
Simplify coverage tests
[rust.git] / src / etc / lldb_providers.py
index ca2685ca31ffd6290987b6efaf776ed5ecb065b5..702f2e82e4e2c8a7be3248190043ca119fb4bef0 100644 (file)
@@ -563,7 +563,7 @@ class StdHashMapSyntheticProvider:
             # HashSet wraps either std HashMap or hashbrown::HashSet, which both
             # wrap hashbrown::HashMap, so either way we "unwrap" twice.
             hashbrown_hashmap = self.valobj.GetChildAtIndex(0).GetChildAtIndex(0)
-        return hashbrown_hashmap.GetChildMemberWithName("table")
+        return hashbrown_hashmap.GetChildMemberWithName("table").GetChildMemberWithName("table")
 
     def has_children(self):
         # type: () -> bool