[Lldb-commits] [lldb] r363382 - DWARF: Remove unused includes from DWARFDebugAranges.h/cpp
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Fri Jun 14 06:21:57 PDT 2019
Author: labath
Date: Fri Jun 14 06:21:57 2019
New Revision: 363382
URL: http://llvm.org/viewvc/llvm-project?rev=363382&view=rev
Log:
DWARF: Remove unused includes from DWARFDebugAranges.h/cpp
Modified:
lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.h
Modified: lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp?rev=363382&r1=363381&r2=363382&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp (original)
+++ lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp Fri Jun 14 06:21:57 2019
@@ -7,20 +7,11 @@
//===----------------------------------------------------------------------===//
#include "DWARFDebugAranges.h"
-
-#include <assert.h>
-#include <stdio.h>
-
-#include <algorithm>
-
+#include "DWARFDebugArangeSet.h"
+#include "DWARFUnit.h"
#include "lldb/Utility/Log.h"
-#include "lldb/Utility/Stream.h"
#include "lldb/Utility/Timer.h"
-#include "DWARFUnit.h"
-#include "DWARFDebugInfo.h"
-#include "SymbolFileDWARF.h"
-
using namespace lldb;
using namespace lldb_private;
Modified: lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.h?rev=363382&r1=363381&r2=363382&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.h (original)
+++ lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.h Fri Jun 14 06:21:57 2019
@@ -9,12 +9,9 @@
#ifndef SymbolFileDWARF_DWARFDebugAranges_h_
#define SymbolFileDWARF_DWARFDebugAranges_h_
-#include "DWARFDebugArangeSet.h"
+#include "lldb/Core/dwarf.h"
#include "lldb/Utility/RangeMap.h"
#include "llvm/Support/Error.h"
-#include <list>
-
-class SymbolFileDWARF;
class DWARFDebugAranges {
protected:
More information about the lldb-commits
mailing list