File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 38
38
39
39
#if defined(__APPLE__) && defined(__MACH__)
40
40
#ifndef __LP64__
41
- typedef const struct mach_header MachHeader ;
41
+ using MachHeader = const struct mach_header ;
42
42
#else
43
- typedef const struct mach_header_64 MachHeader ;
43
+ using MachHeader = const struct mach_header_64 ;
44
44
#endif
45
45
#endif
46
46
Original file line number Diff line number Diff line change @@ -1491,7 +1491,7 @@ class MetadataReader {
1491
1491
namespace llvm {
1492
1492
template <typename Runtime, typename T>
1493
1493
struct simplify_type <swift::remote::RemoteRef<Runtime, T>> {
1494
- typedef const T *SimpleType ;
1494
+ using SimpleType = const T *;
1495
1495
static SimpleType
1496
1496
getSimplifiedValue (swift::remote::RemoteRef<Runtime, T> value) {
1497
1497
return value.getLocalBuffer ();
You can’t perform that action at this time.
0 commit comments