<div dir="ltr">Thanks, I had a CL coming to fix this but you beat me to it.</div><br><div class="gmail_quote"><div dir="ltr">On Wed, Oct 14, 2015 at 1:41 PM Stephane Sezer via lldb-commits <<a href="mailto:lldb-commits@lists.llvm.org">lldb-commits@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Author: sas<br>
Date: Wed Oct 14 15:39:41 2015<br>
New Revision: 250322<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=250322&view=rev" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project?rev=250322&view=rev</a><br>
Log:<br>
Avoid a -Wreorder warning in ScriptInterpreterPython.cpp.<br>
<br>
Modified:<br>
    lldb/trunk/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp<br>
<br>
Modified: lldb/trunk/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp?rev=250322&r1=250321&r2=250322&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp?rev=250322&r1=250321&r2=250322&view=diff</a><br>
==============================================================================<br>
--- lldb/trunk/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp (original)<br>
+++ lldb/trunk/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp Wed Oct 14 15:39:41 2015<br>
@@ -93,8 +93,8 @@ struct InitializePythonRAII<br>
 {<br>
 public:<br>
     InitializePythonRAII() :<br>
-        m_was_already_initialized(false),<br>
-        m_gil_state(PyGILState_UNLOCKED)<br>
+        m_gil_state(PyGILState_UNLOCKED),<br>
+        m_was_already_initialized(false)<br>
     {<br>
         // Python will muck with STDIN terminal state, so save off any current TTY<br>
         // settings so we can restore them.<br>
<br>
<br>
_______________________________________________<br>
lldb-commits mailing list<br>
<a href="mailto:lldb-commits@lists.llvm.org" target="_blank">lldb-commits@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits</a><br>
</blockquote></div>