[Lldb-commits] [PATCH] D145245: [lldb] Ignore libcxx std::ranges global variables in frame var
Adrian Prantl via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Mar 3 08:34:12 PST 2023
aprantl accepted this revision.
aprantl added a comment.
This revision is now accepted and ready to land.
I think this is fine. It's concise, adds useful plugin functionality and we're already hardcoding all sorts of special knowledge about libc++.
================
Comment at: lldb/include/lldb/Target/LanguageRuntime.h:154
+ virtual bool ShouldHideVariable(llvm::StringRef name) const { return false; }
+
----------------
Can you add a doxygen comment about the effects here?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D145245/new/
https://reviews.llvm.org/D145245
More information about the lldb-commits
mailing list