[Lldb-commits] [PATCH] D58090: [WIP] Deserialize Clang module search path from DWARF
Shafik Yaghmour via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Feb 12 14:40:40 PST 2019
shafik added inline comments.
================
Comment at: source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp:266
- for (size_t ci = 1; ci < path.size(); ++ci) {
- llvm::StringRef component = path[ci].GetStringRef();
+ for (size_t ci = 1; ci < module.path.size(); ++ci) {
+ llvm::StringRef component = module.path[ci].GetStringRef();
----------------
JDevlieghere wrote:
> Can we make this `i`?
Or perhaps `path_index`
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D58090/new/
https://reviews.llvm.org/D58090
More information about the lldb-commits
mailing list