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/Plugins/ScriptInterpreter/Python | |
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/Plugins/ScriptInterpreter/Python')
-rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedPythonInterface.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedPythonInterface.h b/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedPythonInterface.h index 4b9f463..b38b65e 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedPythonInterface.h +++ b/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedPythonInterface.h @@ -463,7 +463,6 @@ protected: template <typename T, typename U> void ReverseTransform(T &original_arg, U transformed_arg, Status &error) { // If U is not a PythonObject, don't touch it! - return; } template <typename T> |