diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectQuit.h')
-rw-r--r-- | lldb/source/Commands/CommandObjectQuit.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectQuit.h b/lldb/source/Commands/CommandObjectQuit.h index 0609aedc8c8..444c1926bab 100644 --- a/lldb/source/Commands/CommandObjectQuit.h +++ b/lldb/source/Commands/CommandObjectQuit.h @@ -22,7 +22,7 @@ namespace lldb_private { // CommandObjectQuit //------------------------------------------------------------------------- -class CommandObjectQuit : public CommandObject +class CommandObjectQuit : public CommandObjectParsed { public: @@ -31,8 +31,9 @@ public: virtual ~CommandObjectQuit (); +protected: virtual bool - Execute (Args& args, + DoExecute (Args& args, CommandReturnObject &result); }; |