From 279e4cf78262dfef560631d643b85aa2032ac566 Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Wed, 5 Aug 2020 16:33:54 -0700 Subject: [PATCH] [ELF] Fix type of ciesWithLSDA after D84610 --- lld/ELF/SyntheticSections.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lld/ELF/SyntheticSections.cpp b/lld/ELF/SyntheticSections.cpp index ec9fba6..e453c3b 100644 --- a/lld/ELF/SyntheticSections.cpp +++ b/lld/ELF/SyntheticSections.cpp @@ -480,7 +480,7 @@ void EhFrameSection::iterateFDEWithLSDAAux( template void EhFrameSection::iterateFDEWithLSDA( llvm::function_ref fn) { - DenseSet ciesWithLSDA; + DenseSet ciesWithLSDA; for (EhInputSection *sec : sections) { ciesWithLSDA.clear(); if (sec->areRelocsRela) -- 2.7.4