diff options
author | dim <dim@FreeBSD.org> | 2015-12-30 11:55:28 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2015-12-30 11:55:28 +0000 |
commit | 66b75430a93929d6fc6ed63db14ca28e3ad5b1f6 (patch) | |
tree | 9ed5e1a91f242e2cb5911577356e487a55c01b78 /source/Commands/CommandObjectSyntax.h | |
parent | 23814158e5384f73c6fa951b66d5f807f9c24a2b (diff) | |
download | FreeBSD-src-66b75430a93929d6fc6ed63db14ca28e3ad5b1f6.zip FreeBSD-src-66b75430a93929d6fc6ed63db14ca28e3ad5b1f6.tar.gz |
Vendor import of stripped lldb trunk r256633:
https://llvm.org/svn/llvm-project/lldb/trunk@256633
Diffstat (limited to 'source/Commands/CommandObjectSyntax.h')
-rw-r--r-- | source/Commands/CommandObjectSyntax.h | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/source/Commands/CommandObjectSyntax.h b/source/Commands/CommandObjectSyntax.h index 47bf85f..1a3e4e0 100644 --- a/source/Commands/CommandObjectSyntax.h +++ b/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_ |