[Lldb-commits] [lldb] Add AllowRepeats to SBCommandInterpreterRunOptions. (PR #94786)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Fri Jun 7 13:39:48 PDT 2024
================
@@ -182,6 +187,11 @@ class CommandInterpreterRunOptions {
void SetSpawnThread(bool spawn_thread) {
m_spawn_thread = spawn_thread ? eLazyBoolYes : eLazyBoolNo;
}
+ bool GetAllowRepeats() const { return DefaultToNo(m_allow_repeats); }
----------------
JDevlieghere wrote:
Nit: newline between `SetSpawnThread` and `GetAllowRepeats`?
https://github.com/llvm/llvm-project/pull/94786
More information about the lldb-commits
mailing list