[Lldb-commits] [lldb] [LLDB] Update DIL to handle smart pointers; add more tests. (PR #143786)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Mon Jun 23 00:05:18 PDT 2025
================
@@ -0,0 +1,26 @@
+#include <memory>
+
+struct NodeS;
+
+// Fake smart pointer definition.
+class smart_ptr {
+public:
+ NodeS *__ptr_;
----------------
labath wrote:
This is technically a reserved identifier. Let's just use `ptr`.
https://github.com/llvm/llvm-project/pull/143786
More information about the lldb-commits
mailing list