Dedicated completion for the command target modules search-paths insert with a test case.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Thank you! LGTM with one small nit.
lldb/source/Commands/CommandObjectTarget.cpp | ||
---|---|---|
1171 | If this returns false we've moved past the end of the list so we might as well break out of the loop. | |
1171 | I was going to suggest extending PathMappingList with iterators for the underlying data so we could use a range-based for loop, but I see you need the index so this is fine. |
If this returns false we've moved past the end of the list so we might as well break out of the loop.