diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-03-29 17:58:07 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-03-29 17:58:07 +0000 |
commit | 05f1dd93627322ae87b1fba9c067ae6727ef894b (patch) | |
tree | 19ad4292f0a9708d5f5f0b75a46279fdeecfc88d /lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp | |
parent | 01c07b1a4550b28f90acefb33328b63d0ca619a6 (diff) | |
download | llvm-05f1dd93627322ae87b1fba9c067ae6727ef894b.zip llvm-05f1dd93627322ae87b1fba9c067ae6727ef894b.tar.gz llvm-05f1dd93627322ae87b1fba9c067ae6727ef894b.tar.bz2 |
[ScriptInterpreterPython] Remove unused field (NFC)
The m_lldb_module was initialized but not used.
llvm-svn: 357292
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp')
-rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp index 41dc4ce..e1c432d 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp +++ b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp @@ -361,7 +361,7 @@ ScriptInterpreterPython::ScriptInterpreterPython( CommandInterpreter &interpreter) : ScriptInterpreter(interpreter, eScriptLanguagePython), IOHandlerDelegateMultiline("DONE"), m_saved_stdin(), m_saved_stdout(), - m_saved_stderr(), m_main_module(), m_lldb_module(), + m_saved_stderr(), m_main_module(), m_session_dict(PyInitialValue::Invalid), m_sys_module_dict(PyInitialValue::Invalid), m_run_one_line_function(), m_run_one_line_str_global(), |