Order of initialization lists.
    
This patch fixes all of the warnings due to unordered initialization lists.

Patch by Marco Minutoli.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@129290 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Expression/ClangExpressionVariable.cpp b/source/Expression/ClangExpressionVariable.cpp
index 7cb25e3..2725e6c 100644
--- a/source/Expression/ClangExpressionVariable.cpp
+++ b/source/Expression/ClangExpressionVariable.cpp
@@ -28,16 +28,16 @@
 ClangExpressionVariable::ClangExpressionVariable(ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order, uint32_t addr_byte_size) :
     m_parser_vars(),
     m_jit_vars (),
-    m_frozen_sp (new ValueObjectConstResult(exe_scope, byte_order, addr_byte_size)),
-    m_flags (EVNone)
+    m_flags (EVNone),
+    m_frozen_sp (new ValueObjectConstResult(exe_scope, byte_order, addr_byte_size))
 {
 }
 
 ClangExpressionVariable::ClangExpressionVariable (const lldb::ValueObjectSP &valobj_sp) :
     m_parser_vars(),
     m_jit_vars (),
-    m_frozen_sp (valobj_sp),
-    m_flags (EVNone)
+    m_flags (EVNone),
+    m_frozen_sp (valobj_sp)
 {
 }