diff options
author | Adrian Prantl <aprantl@apple.com> | 2019-10-30 15:26:19 -0700 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2019-10-30 16:03:00 -0700 |
commit | a925974bf166a83cfd45b0ca89c5c65d17f275cc (patch) | |
tree | e08143032d4c9afac1ed92aca0c34d6792ef24da /lldb/source/Commands/CommandObjectPlatform.cpp | |
parent | 17b64e36e90ad05a32a99b9f5784b55310cc10e8 (diff) | |
download | llvm-a925974bf166a83cfd45b0ca89c5c65d17f275cc.zip llvm-a925974bf166a83cfd45b0ca89c5c65d17f275cc.tar.gz llvm-a925974bf166a83cfd45b0ca89c5c65d17f275cc.tar.bz2 |
Run clang-format on lldb/source/Commands (NFC)
These files had a lot of whitespace errors in them which was a
constant source of merge conflicts downstream.
Diffstat (limited to 'lldb/source/Commands/CommandObjectPlatform.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectPlatform.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lldb/source/Commands/CommandObjectPlatform.cpp b/lldb/source/Commands/CommandObjectPlatform.cpp index fbd13aa..9e01162 100644 --- a/lldb/source/Commands/CommandObjectPlatform.cpp +++ b/lldb/source/Commands/CommandObjectPlatform.cpp @@ -6,7 +6,6 @@ // //===----------------------------------------------------------------------===// -#include <mutex> #include "CommandObjectPlatform.h" #include "lldb/Core/Debugger.h" #include "lldb/Core/Module.h" @@ -23,6 +22,7 @@ #include "lldb/Target/Process.h" #include "lldb/Utility/Args.h" #include "lldb/Utility/DataExtractor.h" +#include <mutex> #include "llvm/ADT/SmallString.h" #include "llvm/Support/Threading.h" @@ -1152,8 +1152,7 @@ protected: class CommandOptions : public Options { public: CommandOptions() - : Options(), match_info(), show_args(false), verbose(false) { - } + : Options(), match_info(), show_args(false), verbose(false) {} ~CommandOptions() override = default; @@ -1607,7 +1606,6 @@ public: ExecutionContext exe_ctx = GetCommandInterpreter().GetExecutionContext(); m_options.NotifyOptionParsingStarting(&exe_ctx); - // Print out an usage syntax on an empty command line. if (raw_command_line.empty()) { result.GetOutputStream().Printf("%s\n", this->GetSyntax().str().c_str()); |