diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2017-01-02 21:59:52 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2017-01-02 21:59:52 +0000 | 
| commit | 435933dd67752b0d68c320107a5e69435a6f20ec (patch) | |
| tree | d6d182de35e23e0da238fad40b066bab6a712352 /contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.cpp | |
| parent | 1189dbaa8c30085bd4f9cc7759a459160bcf2375 (diff) | |
| parent | 14f1b3e8826ce43b978db93a62d1166055db5394 (diff) | |
Notes
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.cpp')
| -rw-r--r-- | contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.cpp | 39 | 
1 files changed, 15 insertions, 24 deletions
diff --git a/contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.cpp b/contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.cpp index 06962f8648ad..8b1f25bfc521 100644 --- a/contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.cpp +++ b/contrib/llvm/tools/lldb/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; -} -  | 
