summaryrefslogtreecommitdiff
path: root/source/Commands/CommandObjectVersion.cpp
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2017-01-02 19:26:05 +0000
committerDimitry Andric <dim@FreeBSD.org>2017-01-02 19:26:05 +0000
commit14f1b3e8826ce43b978db93a62d1166055db5394 (patch)
tree0a00ad8d3498783fe0193f3b656bca17c4c8697d /source/Commands/CommandObjectVersion.cpp
parent4ee8c119c71a06dcad1e0fecc8c675e480e59337 (diff)
Notes
Diffstat (limited to 'source/Commands/CommandObjectVersion.cpp')
-rw-r--r--source/Commands/CommandObjectVersion.cpp39
1 files changed, 15 insertions, 24 deletions
diff --git a/source/Commands/CommandObjectVersion.cpp b/source/Commands/CommandObjectVersion.cpp
index 06962f8648adb..8b1f25bfc5216 100644
--- a/source/Commands/CommandObjectVersion.cpp
+++ b/source/Commands/CommandObjectVersion.cpp
@@ -13,9 +13,9 @@
// C++ Includes
// Other libraries and framework includes
// Project includes
-#include "lldb/lldb-private.h"
#include "lldb/Interpreter/CommandInterpreter.h"
#include "lldb/Interpreter/CommandReturnObject.h"
+#include "lldb/lldb-private.h"
using namespace lldb;
using namespace lldb_private;
@@ -25,27 +25,18 @@ using namespace lldb_private;
//-------------------------------------------------------------------------
CommandObjectVersion::CommandObjectVersion(CommandInterpreter &interpreter)
- : CommandObjectParsed(interpreter, "version", "Show the LLDB debugger version.", "version")
-{
-}
-
-CommandObjectVersion::~CommandObjectVersion ()
-{
+ : CommandObjectParsed(interpreter, "version",
+ "Show the LLDB debugger version.", "version") {}
+
+CommandObjectVersion::~CommandObjectVersion() {}
+
+bool CommandObjectVersion::DoExecute(Args &args, CommandReturnObject &result) {
+ if (args.GetArgumentCount() == 0) {
+ result.AppendMessageWithFormat("%s\n", lldb_private::GetVersion());
+ result.SetStatus(eReturnStatusSuccessFinishResult);
+ } else {
+ result.AppendError("the version command takes no arguments.");
+ result.SetStatus(eReturnStatusFailed);
+ }
+ return true;
}
-
-bool
-CommandObjectVersion::DoExecute (Args& args, CommandReturnObject &result)
-{
- if (args.GetArgumentCount() == 0)
- {
- result.AppendMessageWithFormat ("%s\n", lldb_private::GetVersion());
- result.SetStatus (eReturnStatusSuccessFinishResult);
- }
- else
- {
- result.AppendError("the version command takes no arguments.");
- result.SetStatus (eReturnStatusFailed);
- }
- return true;
-}
-