[Lldb-commits] [lldb] [lldb] Return *const* UnwindPlan pointers from FuncUnwinders (PR #133247)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Thu Mar 27 09:15:34 PDT 2025


================
@@ -36,18 +36,19 @@ class FuncUnwinders {
 
   ~FuncUnwinders();
 
-  lldb::UnwindPlanSP GetUnwindPlanAtCallSite(Target &target, Thread &thread);
+  std::shared_ptr<const UnwindPlan> GetUnwindPlanAtCallSite(Target &target,
----------------
JDevlieghere wrote:

Can we change the `UnwindPlanSP` typedef? Do we ever need a non-const UnwindPlan shared pointer?

https://github.com/llvm/llvm-project/pull/133247


More information about the lldb-commits mailing list