aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/ScriptInterpreter/Python/ScriptedPythonInterface.h
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2022-06-17 14:50:32 -0700
committerJonas Devlieghere <jonas@devlieghere.com>2022-06-17 15:08:02 -0700
commit991663399792d4cc03da6b6c7131a6c213655318 (patch)
tree72bdb4ec7df0cf66216b033e7e27044865ee49e0 /lldb/source/Plugins/ScriptInterpreter/Python/ScriptedPythonInterface.h
parent92c6ffa14cdeb3edd50b46d30c830698705db9f5 (diff)
downloadllvm-991663399792d4cc03da6b6c7131a6c213655318.zip
llvm-991663399792d4cc03da6b6c7131a6c213655318.tar.gz
llvm-991663399792d4cc03da6b6c7131a6c213655318.tar.bz2
[lldb] Fix modernize-use-override warnings (NFC)
Fix modernize-use-override warnings. Because this check is listed in LLDB's top level .clang-tidy configuration, the check is enabled by default and the resulting warnings show up in my editor. I've audited the modified lines. This is not a blind change.
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/ScriptedPythonInterface.h')
-rw-r--r--lldb/source/Plugins/ScriptInterpreter/Python/ScriptedPythonInterface.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptedPythonInterface.h b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptedPythonInterface.h
index f2ac306..7c2fadc 100644
--- a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptedPythonInterface.h
+++ b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptedPythonInterface.h
@@ -25,7 +25,7 @@ class ScriptInterpreterPythonImpl;
class ScriptedPythonInterface : virtual public ScriptedInterface {
public:
ScriptedPythonInterface(ScriptInterpreterPythonImpl &interpreter);
- virtual ~ScriptedPythonInterface() = default;
+ ~ScriptedPythonInterface() override = default;
protected:
template <typename T = StructuredData::ObjectSP>