mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-22 07:22:54 +00:00
ceff6644bb
This patch removes the comments grouping header includes. They were added after running IWYU over the LLDB codebase. However they add little value, are often outdates and burdensome to maintain. llvm-svn: 346626
39 lines
1.3 KiB
C++
39 lines
1.3 KiB
C++
//===-- CommandObjectVersion.cpp --------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "CommandObjectVersion.h"
|
|
|
|
#include "lldb/Interpreter/CommandInterpreter.h"
|
|
#include "lldb/Interpreter/CommandReturnObject.h"
|
|
#include "lldb/lldb-private.h"
|
|
|
|
using namespace lldb;
|
|
using namespace lldb_private;
|
|
|
|
//-------------------------------------------------------------------------
|
|
// CommandObjectVersion
|
|
//-------------------------------------------------------------------------
|
|
|
|
CommandObjectVersion::CommandObjectVersion(CommandInterpreter &interpreter)
|
|
: 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;
|
|
}
|