aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2020-08-09 22:12:10 -0700
committerEric Christopher <echristo@gmail.com>2020-08-09 22:12:10 -0700
commitb529c5270c99e0ca18e3cbd9a5f50eb0970e560a (patch)
tree9e82d3209e1bdc60499053a36ba682a88077501e
parent1675f8a2516d0a6f90744aef1066482ee072bbc8 (diff)
downloadllvm-b529c5270c99e0ca18e3cbd9a5f50eb0970e560a.zip
llvm-b529c5270c99e0ca18e3cbd9a5f50eb0970e560a.tar.gz
llvm-b529c5270c99e0ca18e3cbd9a5f50eb0970e560a.tar.bz2
Add override to fix -Winconsistent-missing-override warning.
-rw-r--r--lldb/include/lldb/Target/ThreadPlanPython.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/include/lldb/Target/ThreadPlanPython.h b/lldb/include/lldb/Target/ThreadPlanPython.h
index c04500a..7b37b2b 100644
--- a/lldb/include/lldb/Target/ThreadPlanPython.h
+++ b/lldb/include/lldb/Target/ThreadPlanPython.h
@@ -47,7 +47,7 @@ public:
bool StopOthers() override { return m_stop_others; }
- void SetStopOthers(bool new_value) { m_stop_others = new_value; }
+ void SetStopOthers(bool new_value) override { m_stop_others = new_value; }
void DidPush() override;