diff options
author | Quinn Pham <Quinn.Pham@ibm.com> | 2021-11-02 08:58:19 -0500 |
---|---|---|
committer | Quinn Pham <Quinn.Pham@ibm.com> | 2021-11-11 15:04:44 -0600 |
commit | 04cbfa950e0221ac334f802407a9b766df33eee5 (patch) | |
tree | eff5e8494c0565aa537219a71771b534a5ec52ae /lldb/source/Target/ThreadPlanPython.cpp | |
parent | 3e7ad1f2b2c0a753749eaba88d369d6032a50764 (diff) | |
download | llvm-04cbfa950e0221ac334f802407a9b766df33eee5.zip llvm-04cbfa950e0221ac334f802407a9b766df33eee5.tar.gz llvm-04cbfa950e0221ac334f802407a9b766df33eee5.tar.bz2 |
[lldb][NFC] Inclusive Language: rename master plan to controlling plan
[NFC] As part of using inclusive language within the llvm project, this patch
renames master plan to controlling plan in lldb.
Reviewed By: jingham
Differential Revision: https://reviews.llvm.org/D113019
Diffstat (limited to 'lldb/source/Target/ThreadPlanPython.cpp')
-rw-r--r-- | lldb/source/Target/ThreadPlanPython.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Target/ThreadPlanPython.cpp b/lldb/source/Target/ThreadPlanPython.cpp index e83f0e9..cd63d28 100644 --- a/lldb/source/Target/ThreadPlanPython.cpp +++ b/lldb/source/Target/ThreadPlanPython.cpp @@ -31,7 +31,7 @@ ThreadPlanPython::ThreadPlanPython(Thread &thread, const char *class_name, eVoteNoOpinion, eVoteNoOpinion), m_class_name(class_name), m_args_data(args_data), m_did_push(false), m_stop_others(false) { - SetIsMasterPlan(true); + SetIsControllingPlan(true); SetOkayToDiscard(true); SetPrivate(false); } |