[lldb] [llvm] [lldb][dwarf] Compute fully qualified names on simplified template names with DWARFTypePrinter (PR #112811)
Pavel Labath via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 5 07:28:33 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(); }
----------------
labath wrote:
How about using `operator bool` as the common api ?
https://github.com/llvm/llvm-project/pull/112811
More information about the llvm-commits
mailing list