[Lldb-commits] [PATCH] D152011: [lldb/Commands] Add support to auto-completion for user commands
Med Ismail Bennani via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Jun 6 10:25:07 PDT 2023
mib marked an inline comment as done.
mib added inline comments.
================
Comment at: lldb/include/lldb/lldb-enumerations.h:1279
+ // if you & in this bit the base code will not process the option.
+ eCustomCompletion = (1u << 24)
+};
----------------
JDevlieghere wrote:
> Should this be `<< 25`?
I've just copied the enum as-is, but now that you mention it, I also think this should be `<< 25`.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D152011/new/
https://reviews.llvm.org/D152011
More information about the lldb-commits
mailing list