aboutsummaryrefslogtreecommitdiff
path: root/source/Commands/CommandObjectVersion.cpp
diff options
context:
space:
mode:
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 06962f8648ad..8b1f25bfc521 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;
-}
-