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/Symbol/UnwindTable.cpp b/source/Symbol/UnwindTable.cpp
index 4b30980..d185655 100644
--- a/source/Symbol/UnwindTable.cpp
+++ b/source/Symbol/UnwindTable.cpp
@@ -33,8 +33,8 @@
m_object_file (objfile),
m_unwinds (),
m_initialized (false),
- m_eh_frame (NULL),
- m_assembly_profiler (NULL)
+ m_assembly_profiler (NULL),
+ m_eh_frame (NULL)
{
}