diff options
author | Kazu Hirata <kazu@google.com> | 2025-05-22 22:36:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-22 22:36:26 -0700 |
commit | 6979ab26555a8640a0470410c2c040fd68bf68ce (patch) | |
tree | 26a0e5b39fc6f43d9bfaa508a8e2392348f45d8c /lldb/source/Commands/CommandObjectTarget.cpp | |
parent | c0e7a59204660e8609ae18cfb7e0c7912bf058cf (diff) | |
download | llvm-6979ab26555a8640a0470410c2c040fd68bf68ce.zip llvm-6979ab26555a8640a0470410c2c040fd68bf68ce.tar.gz llvm-6979ab26555a8640a0470410c2c040fd68bf68ce.tar.bz2 |
[lldb] Remove redundant control flow statements (NFC) (#141183)
Diffstat (limited to 'lldb/source/Commands/CommandObjectTarget.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectTarget.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectTarget.cpp b/lldb/source/Commands/CommandObjectTarget.cpp index 8c877fc..e2ba000 100644 --- a/lldb/source/Commands/CommandObjectTarget.cpp +++ b/lldb/source/Commands/CommandObjectTarget.cpp @@ -649,8 +649,6 @@ protected: result.GetOutputStream().Printf("%u targets deleted.\n", (uint32_t)num_targets_to_delete); result.SetStatus(eReturnStatusSuccessFinishResult); - - return; } OptionGroupOptions m_option_group; |