Avoid a -Wreorder warning in ScriptInterpreterPython.cpp.

llvm-svn: 250322
This commit is contained in:
Stephane Sezer
2015-10-14 20:39:41 +00:00
parent ab25621997
commit 7686644691

View File

@@ -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.