diff options
author | Rui Ueyama <ruiu@google.com> | 2019-04-01 00:11:24 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2019-04-01 00:11:24 +0000 |
commit | 68b9f45feee290a0ffecf6002f2cad926ab7fd69 (patch) | |
tree | 7ae7b98326fa5441ab3f333a24faee55ee7ba001 /lld/COFF/MapFile.cpp | |
parent | 7fb58e98f547ee4cfa2dceac4367fc5942483e90 (diff) | |
download | bcm5719-llvm-68b9f45feee290a0ffecf6002f2cad926ab7fd69.tar.gz bcm5719-llvm-68b9f45feee290a0ffecf6002f2cad926ab7fd69.zip |
Replace `typedef A B` with `using B = A`. NFC.
I did this using Perl.
Differential Revision: https://reviews.llvm.org/D60003
llvm-svn: 357372
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 |