[Lldb-commits] [PATCH] D123954: [lldb] Add setting for max depth of value object printing (NFC)

Dave Lee via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Tue May 3 08:59:48 PDT 2022


kastiglione added inline comments.


================
Comment at: lldb/include/lldb/Interpreter/OptionGroupValueObjectDisplay.h:50
   uint32_t max_depth;
+  bool max_depth_is_default;
   uint32_t ptr_depth;
----------------
aprantl wrote:
> Should this be with the other bools on line 45?
It wasn't there because of `std::tie` can't bind to a bit field value. I've moved this bool into the bitfield and got rid of the `std::tie`.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D123954/new/

https://reviews.llvm.org/D123954



More information about the lldb-commits mailing list