Adds support for doing range-based for-loops on LLDB's VariableList and
modernises all the index-based for-loops in LLDB where possible.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Since copying shared pointers isn't completely cheap, I think we should use const shared_ptr &s whereever possible. Also, the typical lldb naming convention for shared_pointer variables is to have them end in _sp, so I'd try to preserve that.
Besides that, LGTM.