Added motheds to C++ classes as we parse them to keep clang happy.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@114616 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Symbol/UnwindTable.cpp b/source/Symbol/UnwindTable.cpp
index dcab193..183e231 100644
--- a/source/Symbol/UnwindTable.cpp
+++ b/source/Symbol/UnwindTable.cpp
@@ -7,18 +7,19 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "lldb/Symbol/ObjectFile.h"
+#include "lldb/Symbol/UnwindTable.h"
 
+#include <stdio.h>
+
+#include "lldb/lldb-forward.h"
+
+#include "lldb/Core/Module.h"
+#include "lldb/Core/Section.h"
+#include "lldb/Symbol/ObjectFile.h"
 #include "lldb/Symbol/FuncUnwinders.h"
 #include "lldb/Symbol/SymbolContext.h"
-#include "lldb/Core/Section.h"
-#include "lldb/Core/Module.h"
-#include "lldb/lldb-forward.h"
-#include "lldb/Utility/UnwindAssemblyProfiler.h"
 #include "lldb/Symbol/DWARFCallFrameInfo.h"
-
-#include "lldb/Symbol/UnwindTable.h"
-#include <stdio.h>
+#include "lldb/Utility/UnwindAssemblyProfiler.h"
 
 // There is one UnwindTable object per ObjectFile.
 // It contains a list of Unwind objects -- one per function, populated lazily -- for the ObjectFile.