From 0660249cca89208f042b13913bf0bb5485527ec1 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Sat, 27 Aug 2022 21:21:05 -0700 Subject: [lldb] Remove a redundaunt return statement (NFC) Identified with readability-redundant-control-flow. --- .../source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp') 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( -- cgit v1.1