[Lldb-commits] [PATCH] D119915: Replace use of double underscore in identifiers
Adrian Prantl via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Feb 21 09:21:01 PST 2022
aprantl added a comment.
Herald added a subscriber: JDevlieghere.
Nice.
================
Comment at: lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp:261
if (m_pair_ptr) {
- auto __i_(valobj_sp->GetChildMemberWithName(g___i_, true));
+ auto __i_(valobj_sp->GetChildMemberWithName(g_i_, true));
if (!__i_) {
----------------
This one also contains a double __?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D119915/new/
https://reviews.llvm.org/D119915
More information about the lldb-commits
mailing list