From 280eb8ab4d95443c8f3828e861cf9dde09fdac25 Mon Sep 17 00:00:00 2001 From: Pavel Labath Date: Tue, 18 Aug 2015 08:39:09 +0000 Subject: 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 --- .../Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h') 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 -- cgit v1.2.3