[gardening][SIL] Replace typedef with using

This commit is contained in:
Sho Ikeda
2018-04-05 13:53:20 +09:00
parent 10dc220df6
commit 03fbd4a6de
18 changed files with 40 additions and 39 deletions

View File

@@ -145,7 +145,7 @@ namespace llvm {
template <>
struct ilist_traits<::swift::SILCoverageMap>
: public ilist_default_traits<::swift::SILCoverageMap> {
typedef ::swift::SILCoverageMap SILCoverageMap;
using SILCoverageMap = ::swift::SILCoverageMap;
public:
static void deleteNode(SILCoverageMap *VT) { VT->~SILCoverageMap(); }