[Lldb-commits] [lldb] [lldb] Provide default impl for MightHaveChildren (NFC) (PR #119977)
Dave Lee via lldb-commits
lldb-commits at lists.llvm.org
Sat Dec 14 10:02:45 PST 2024
================
@@ -227,22 +221,6 @@ namespace Foundation1437 {
}
}
-class NSSetCodeRunningSyntheticFrontEnd : public SyntheticChildrenFrontEnd {
-public:
- NSSetCodeRunningSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp);
-
- ~NSSetCodeRunningSyntheticFrontEnd() override;
-
- llvm::Expected<uint32_t> CalculateNumChildren() override;
-
- lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
-
- lldb::ChildCacheState Update() override;
-
- bool MightHaveChildren() override;
----------------
kastiglione wrote:
while auditing `MightHaveChildren` declarations, the name of this class caught my attention. I looked for uses and found none, so I've removed it.
https://github.com/llvm/llvm-project/pull/119977
More information about the lldb-commits
mailing list