diff options
author | Enrico Granata <egranata@apple.com> | 2016-04-12 01:08:35 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2016-04-12 01:08:35 +0000 |
commit | b184bfa13b9f930f1077bc8e670b2ae46b3cce2e (patch) | |
tree | 7df8e959a290acc2ee37c03fb9447029e0b25744 /lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h | |
parent | 278199f615d9f9e224e5033b9558c6ed974cbf37 (diff) | |
download | llvm-b184bfa13b9f930f1077bc8e670b2ae46b3cce2e.zip llvm-b184bfa13b9f930f1077bc8e670b2ae46b3cce2e.tar.gz llvm-b184bfa13b9f930f1077bc8e670b2ae46b3cce2e.tar.bz2 |
Restore the lazy initialization of ScriptInterpreterPython, which was lost as part of the SystemLifetimeManager work
llvm-svn: 266033
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h')
-rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h index 83702a0..86de2dd 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h +++ b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h @@ -372,9 +372,6 @@ public: void ResetOutputFileHandle(FILE *new_fh) override; static void - InitializePrivate (); - - static void InitializeInterpreter (SWIGInitCallback python_swig_init_callback, SWIGBreakpointCallbackFunction swig_breakpoint_callback, SWIGWatchpointCallbackFunction swig_watchpoint_callback, @@ -507,6 +504,9 @@ public: }; protected: + static void + InitializePrivate (); + class SynchronicityHandler { private: |