summaryrefslogtreecommitdiffstats
path: root/lldb/source/Interpreter/CommandObjectScript.h
diff options
context:
space:
mode:
authorEugene Zelenko <eugene.zelenko@gmail.com>2015-10-26 17:00:13 +0000
committerEugene Zelenko <eugene.zelenko@gmail.com>2015-10-26 17:00:13 +0000
commit315b6884573e0d2d78a252a290df69fb30dbcbc4 (patch)
tree4028184a816015bc2ba2bec4dd95365f3399dbe5 /lldb/source/Interpreter/CommandObjectScript.h
parentb2662a27ec3a903d66530ea06c74234c3524e0be (diff)
downloadbcm5719-llvm-315b6884573e0d2d78a252a290df69fb30dbcbc4.tar.gz
bcm5719-llvm-315b6884573e0d2d78a252a290df69fb30dbcbc4.zip
Fix Clang-tidy modernize-use-override warnings in some files in source; other minor fixes.
llvm-svn: 251309
Diffstat (limited to 'lldb/source/Interpreter/CommandObjectScript.h')
-rw-r--r--lldb/source/Interpreter/CommandObjectScript.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/lldb/source/Interpreter/CommandObjectScript.h b/lldb/source/Interpreter/CommandObjectScript.h
index fd55fc44a46..5365aaac4cb 100644
--- a/lldb/source/Interpreter/CommandObjectScript.h
+++ b/lldb/source/Interpreter/CommandObjectScript.h
@@ -25,18 +25,16 @@ namespace lldb_private {
class CommandObjectScript : public CommandObjectRaw
{
public:
+ CommandObjectScript(CommandInterpreter &interpreter,
+ lldb::ScriptLanguage script_lang);
- CommandObjectScript (CommandInterpreter &interpreter,
- lldb::ScriptLanguage script_lang);
-
- virtual
- ~CommandObjectScript ();
+ ~CommandObjectScript() override;
protected:
- virtual bool
- DoExecute (const char *command, CommandReturnObject &result);
+ bool
+ DoExecute(const char *command, CommandReturnObject &result) override;
};
} // namespace lldb_private
-#endif // liblldb_CommandObjectScript_h_
+#endif // liblldb_CommandObjectScript_h_
OpenPOWER on IntegriCloud