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/ClangExpressionDeclMap.cpp b/source/Expression/ClangExpressionDeclMap.cpp
index 411651f..99f0e60 100644
--- a/source/Expression/ClangExpressionDeclMap.cpp
+++ b/source/Expression/ClangExpressionDeclMap.cpp
@@ -50,9 +50,9 @@
 ClangExpressionDeclMap::ClangExpressionDeclMap (bool keep_result_in_memory) :
     m_found_entities (),
     m_struct_members (),
+    m_keep_result_in_memory (keep_result_in_memory),
     m_parser_vars (),
-    m_struct_vars (),
-    m_keep_result_in_memory (keep_result_in_memory)
+    m_struct_vars ()
 {
     EnableStructVars();
 }