diff options
Diffstat (limited to 'lld/COFF/MapFile.cpp')
-rw-r--r-- | lld/COFF/MapFile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/COFF/MapFile.cpp b/lld/COFF/MapFile.cpp index 5e1a3d005aa..fc5af18b3de 100644 --- a/lld/COFF/MapFile.cpp +++ b/lld/COFF/MapFile.cpp @@ -32,8 +32,8 @@ using namespace llvm::object; using namespace lld; using namespace lld::coff; -typedef DenseMap<const SectionChunk *, SmallVector<DefinedRegular *, 4>> - SymbolMapTy; +using SymbolMapTy = + DenseMap<const SectionChunk *, SmallVector<DefinedRegular *, 4>>; static const std::string Indent8 = " "; // 8 spaces static const std::string Indent16 = " "; // 16 spaces |