Fix build broken by r249885

llvm-svn: 249900
This commit is contained in:
Zachary Turner
2015-10-09 20:56:23 +00:00
parent fd78cc88cf
commit 638b98d3ed
2 changed files with 3 additions and 3 deletions

View File

@@ -189,8 +189,8 @@ ScriptInterpreterPython::ScriptInterpreterPython (CommandInterpreter &interprete
m_saved_stderr (),
m_main_module (),
m_lldb_module (),
m_session_dict (false), // Don't create an empty dictionary, leave it invalid
m_sys_module_dict (false), // Don't create an empty dictionary, leave it invalid
m_session_dict(nullptr),
m_sys_module_dict(nullptr),
m_run_one_line_function (),
m_run_one_line_str_global (),
m_dictionary_name (interpreter.GetDebugger().GetInstanceName().AsCString()),