diff options
author | Pavel Labath <labath@google.com> | 2015-08-18 08:39:09 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2015-08-18 08:39:09 +0000 |
commit | 280eb8ab4d95443c8f3828e861cf9dde09fdac25 (patch) | |
tree | 65df8ebd2bf3bd0f2e7388ca5c6371d43cbda531 /lldb/source/Plugins/ScriptInterpreter/Python | |
parent | 08d823afe4017d068712b4882c94c80e752cc032 (diff) | |
download | bcm5719-llvm-280eb8ab4d95443c8f3828e861cf9dde09fdac25.tar.gz bcm5719-llvm-280eb8ab4d95443c8f3828e861cf9dde09fdac25.zip |
Fix Clang-tidy misc-use-override warnings in some files in include/lldb/Core, unify closing inclusion guards
patch by Eugene Zelenko
Differential Revision: http://reviews.llvm.org/D11695
llvm-svn: 245275
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python')
-rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h index adfef2e5602..6e233670855 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h +++ b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h @@ -128,7 +128,7 @@ public: ScriptInterpreterPython (CommandInterpreter &interpreter); - ~ScriptInterpreterPython (); + ~ScriptInterpreterPython() override; bool Interrupt() override; @@ -495,7 +495,7 @@ public: FILE *out = NULL, FILE *err = NULL); - ~Locker (); + ~Locker () override; private: @@ -585,6 +585,6 @@ protected: }; } // namespace lldb_private -#endif // #ifdef LLDB_DISABLE_PYTHON +#endif // LLDB_DISABLE_PYTHON -#endif // #ifndef LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_SCRIPTINTERPRETERPYTHON_H +#endif // LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_SCRIPTINTERPRETERPYTHON_H |