Skip to content

Commit b529c52

Browse files
committed
Add override to fix -Winconsistent-missing-override warning.
1 parent 1675f8a commit b529c52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/include/lldb/Target/ThreadPlanPython.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class ThreadPlanPython : public ThreadPlan {
4747

4848
bool StopOthers() override { return m_stop_others; }
4949

50-
void SetStopOthers(bool new_value) { m_stop_others = new_value; }
50+
void SetStopOthers(bool new_value) override { m_stop_others = new_value; }
5151

5252
void DidPush() override;
5353

0 commit comments

Comments
 (0)