From 7686644691f814f9b854319840d80457e7652821 Mon Sep 17 00:00:00 2001 From: Stephane Sezer Date: Wed, 14 Oct 2015 20:39:41 +0000 Subject: Avoid a -Wreorder warning in ScriptInterpreterPython.cpp. llvm-svn: 250322 --- .../Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp | 4 ++-- 1 file changed, 2 insertions(+), 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 9dda825..704e851 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp +++ b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp @@ -93,8 +93,8 @@ struct InitializePythonRAII { public: InitializePythonRAII() : - m_was_already_initialized(false), - m_gil_state(PyGILState_UNLOCKED) + m_gil_state(PyGILState_UNLOCKED), + m_was_already_initialized(false) { // Python will muck with STDIN terminal state, so save off any current TTY // settings so we can restore them. -- cgit v1.1