diff options
author | Kazu Hirata <kazu@google.com> | 2022-08-27 21:21:05 -0700 |
---|---|---|
committer | Kazu Hirata <kazu@google.com> | 2022-08-27 21:21:05 -0700 |
commit | 0660249cca89208f042b13913bf0bb5485527ec1 (patch) | |
tree | 5647cf1f5106660cee73387359733bb63628b44e /lldb/source/Plugins/ScriptInterpreter/Python | |
parent | d0f1283e6b48acb67c1f43e851f6aea2a5f2f516 (diff) | |
download | llvm-0660249cca89208f042b13913bf0bb5485527ec1.zip llvm-0660249cca89208f042b13913bf0bb5485527ec1.tar.gz llvm-0660249cca89208f042b13913bf0bb5485527ec1.tar.bz2 |
[lldb] Remove a redundaunt return statement (NFC)
Identified with readability-redundant-control-flow.
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python')
-rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp index 2178db8..7717f22 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp +++ b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp @@ -1259,8 +1259,6 @@ void ScriptInterpreterPythonImpl::SetWatchpointCommandCallback( wp_options->SetCallback( ScriptInterpreterPythonImpl::WatchpointCallbackFunction, baton_sp); } - - return; } Status ScriptInterpreterPythonImpl::ExportFunctionDefinitionToInterpreter( |