[lldb] [llvm] [lldb][dwarf] Compute fully qualified names on simplified template names with DWARFTypePrinter (PR #112811)
Zequan Wu via llvm-commits
llvm-commits at lists.llvm.org
Wed Nov 6 17:03:25 PST 2024
================
@@ -46,6 +48,7 @@ class DWARFBaseDIE {
explicit operator bool() const { return IsValid(); }
bool IsValid() const { return m_cu && m_die; }
+ bool isValid() const { return IsValid(); }
----------------
ZequanWu wrote:
Removed both `IsValid()` and `IsValid()` and switched to use `operator bool ()`.
https://github.com/llvm/llvm-project/pull/112811
More information about the llvm-commits
mailing list