[Lldb-commits] [lldb] [lldb] Fix dynamic type resolution for types parsed from declarations (PR #137974)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 30 08:36:23 PDT 2025
================
@@ -11,6 +11,22 @@
using namespace lldb_private;
+std::optional<bool> ClangASTMetadata::GetIsDynamicCXXType() const {
+ switch (m_is_dynamic_cxx) {
+ case 0:
----------------
Michael137 wrote:
Should we make these enum cases for readability? Don't feel strongly either way.
https://github.com/llvm/llvm-project/pull/137974
More information about the lldb-commits
mailing list