clayborg added inline comments.

================
Comment at: include/lldb/Symbol/FuncUnwinders.h:117
+  class LazyPlan {
+    lldb::UnwindPlanSP m_plan_sp;
+
----------------
maybe use:

```
llvm::Optional<lldb::UnwindPlanSP> m_plan_sp;
```

Then just check if it has no value, and if so compute and set it either to a 
valid shared pointer or an empty one?


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D61779/new/

https://reviews.llvm.org/D61779



_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to