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/ASTStructExtractor.cpp b/source/Expression/ASTStructExtractor.cpp
index 0375a97..efad383 100644
--- a/source/Expression/ASTStructExtractor.cpp
+++ b/source/Expression/ASTStructExtractor.cpp
@@ -34,8 +34,8 @@
     m_passthrough_sema (NULL),
     m_sema (NULL),
     m_action (NULL),
-    m_struct_name (struct_name),
-    m_function (function)
+    m_function (function),
+    m_struct_name (struct_name)
 {
     if (!m_passthrough)
         return;