From 82af17cde8caa8d2d020237f644d4302fc4fa589 Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Fri, 18 Sep 2020 11:22:37 -0700 Subject: [PATCH] Linewrap & remove some dead typedefs from previous commit Cleanup for 51a505340dfdfdfd9ab32c7267a74db3cdeefa56 --- llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h b/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h index 31e2da1..bc6c67a 100644 --- a/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h +++ b/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h @@ -315,11 +315,10 @@ public: /// Helper to allow for parsing of an entire .debug_line section in sequence. class SectionParser { public: - using cu_range = DWARFUnitVector::iterator_range; - using tu_range = DWARFUnitVector::iterator_range; using LineToUnitMap = std::map; - SectionParser(DWARFDataExtractor &Data, const DWARFContext &C, DWARFUnitVector::iterator_range Units); + SectionParser(DWARFDataExtractor &Data, const DWARFContext &C, + DWARFUnitVector::iterator_range Units); /// Get the next line table from the section. Report any issues via the /// handlers. -- 2.7.4