aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectSyntax.h
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2015-09-02 09:33:09 +0000
committerPavel Labath <labath@google.com>2015-09-02 09:33:09 +0000
commit1fb7e202d968912850c816fa56ced2579221dc06 (patch)
treec0a10368ab723ad80bc7e09ff830f4a485eebf58 /lldb/source/Commands/CommandObjectSyntax.h
parent4407b8eba1cfbf3e11ecd383a29c6a56a680587a (diff)
downloadllvm-1fb7e202d968912850c816fa56ced2579221dc06.zip
llvm-1fb7e202d968912850c816fa56ced2579221dc06.tar.gz
llvm-1fb7e202d968912850c816fa56ced2579221dc06.tar.bz2
Fix Clang-tidy misc-use-override warnings in source/Commands headers, unify closing inclusion guards
patch by Eugene Zelenko. Differential Revision: http://reviews.llvm.org/D12207 llvm-svn: 246628
Diffstat (limited to 'lldb/source/Commands/CommandObjectSyntax.h')
-rw-r--r--lldb/source/Commands/CommandObjectSyntax.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/lldb/source/Commands/CommandObjectSyntax.h b/lldb/source/Commands/CommandObjectSyntax.h
index 47bf85f..1a3e4e0 100644
--- a/lldb/source/Commands/CommandObjectSyntax.h
+++ b/lldb/source/Commands/CommandObjectSyntax.h
@@ -28,17 +28,14 @@ public:
CommandObjectSyntax (CommandInterpreter &interpreter);
- virtual
- ~CommandObjectSyntax ();
+ ~CommandObjectSyntax() override;
protected:
- virtual bool
- DoExecute (Args& command,
- CommandReturnObject &result);
-
-
+ bool
+ DoExecute(Args& command,
+ CommandReturnObject &result) override;
};
} // namespace lldb_private
-#endif // liblldb_CommandObjectSyntax_h_
+#endif // liblldb_CommandObjectSyntax_h_