[Lldb-commits] [PATCH] D122680: Add a setting to force overwriting commands in "command script add"

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Apr 1 05:13:41 PDT 2022


labath added inline comments.


================
Comment at: lldb/source/Commands/CommandObjectCommands.cpp:1650
   std::string m_short_help;
-  bool m_overwrite = false;
+  bool m_overwrite = eLazyBoolCalculate;
   ScriptedCommandSynchronicity m_synchronicity =
----------------
This doesn't seem right. `eLazyBoolCalculate` is effectively true, but I don't know if that's what you meant.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D122680



More information about the lldb-commits mailing list