@@ -1416,7 +1416,7 @@ class BuiltinRawPointerType : public BuiltinType {
1416
1416
return T->getKind () == TypeKind::BuiltinRawPointer;
1417
1417
}
1418
1418
};
1419
- DEFINE_EMPTY_CAN_TYPE_WRAPPER (BuiltinRawPointerType, BuiltinType);
1419
+ DEFINE_EMPTY_CAN_TYPE_WRAPPER (BuiltinRawPointerType, BuiltinType)
1420
1420
1421
1421
// / BuiltinRawContinuationType - The builtin raw unsafe continuation type.
1422
1422
// / In C, this is a non-null AsyncTask*. This pointer is completely
@@ -1431,7 +1431,7 @@ class BuiltinRawUnsafeContinuationType : public BuiltinType {
1431
1431
return T->getKind () == TypeKind::BuiltinRawUnsafeContinuation;
1432
1432
}
1433
1433
};
1434
- DEFINE_EMPTY_CAN_TYPE_WRAPPER (BuiltinRawUnsafeContinuationType, BuiltinType);
1434
+ DEFINE_EMPTY_CAN_TYPE_WRAPPER (BuiltinRawUnsafeContinuationType, BuiltinType)
1435
1435
1436
1436
// / BuiltinExecutorType - The builtin executor-ref type. In C, this
1437
1437
// / is the ExecutorRef struct type.
@@ -1444,7 +1444,7 @@ class BuiltinExecutorType : public BuiltinType {
1444
1444
return T->getKind () == TypeKind::BuiltinExecutor;
1445
1445
}
1446
1446
};
1447
- DEFINE_EMPTY_CAN_TYPE_WRAPPER (BuiltinExecutorType, BuiltinType);
1447
+ DEFINE_EMPTY_CAN_TYPE_WRAPPER (BuiltinExecutorType, BuiltinType)
1448
1448
1449
1449
// / BuiltinJobType - The builtin job type. In C, this is a
1450
1450
// / non-null Job*. This pointer is completely unmanaged (the unscheduled
@@ -1458,7 +1458,7 @@ class BuiltinJobType : public BuiltinType {
1458
1458
return T->getKind () == TypeKind::BuiltinJob;
1459
1459
}
1460
1460
};
1461
- DEFINE_EMPTY_CAN_TYPE_WRAPPER (BuiltinJobType, BuiltinType);
1461
+ DEFINE_EMPTY_CAN_TYPE_WRAPPER (BuiltinJobType, BuiltinType)
1462
1462
1463
1463
// / BuiltinDefaultActorStorageType - The type of the stored property
1464
1464
// / that's added implicitly to default actors. No C equivalent because
@@ -1474,7 +1474,7 @@ class BuiltinDefaultActorStorageType : public BuiltinType {
1474
1474
return T->getKind () == TypeKind::BuiltinDefaultActorStorage;
1475
1475
}
1476
1476
};
1477
- DEFINE_EMPTY_CAN_TYPE_WRAPPER (BuiltinDefaultActorStorageType, BuiltinType);
1477
+ DEFINE_EMPTY_CAN_TYPE_WRAPPER (BuiltinDefaultActorStorageType, BuiltinType)
1478
1478
1479
1479
// / BuiltinNativeObjectType - The builtin opaque object-pointer type.
1480
1480
// / Useful for keeping an object alive when it is otherwise being
@@ -1488,7 +1488,7 @@ class BuiltinNativeObjectType : public BuiltinType {
1488
1488
return T->getKind () == TypeKind::BuiltinNativeObject;
1489
1489
}
1490
1490
};
1491
- DEFINE_EMPTY_CAN_TYPE_WRAPPER (BuiltinNativeObjectType, BuiltinType);
1491
+ DEFINE_EMPTY_CAN_TYPE_WRAPPER (BuiltinNativeObjectType, BuiltinType)
1492
1492
1493
1493
// / A type that contains an owning reference to a heap object packed with
1494
1494
// / additional bits. The type uses a bit to discriminate native Swift objects
@@ -1502,7 +1502,7 @@ class BuiltinBridgeObjectType : public BuiltinType {
1502
1502
return T->getKind () == TypeKind::BuiltinBridgeObject;
1503
1503
}
1504
1504
};
1505
- DEFINE_EMPTY_CAN_TYPE_WRAPPER (BuiltinBridgeObjectType, BuiltinType);
1505
+ DEFINE_EMPTY_CAN_TYPE_WRAPPER (BuiltinBridgeObjectType, BuiltinType)
1506
1506
1507
1507
// / BuiltinUnsafeValueBufferType - The builtin opaque fixed-size value
1508
1508
// / buffer type, into which storage for an arbitrary value can be
@@ -1521,7 +1521,7 @@ class BuiltinUnsafeValueBufferType : public BuiltinType {
1521
1521
return T->getKind () == TypeKind::BuiltinUnsafeValueBuffer;
1522
1522
}
1523
1523
};
1524
- DEFINE_EMPTY_CAN_TYPE_WRAPPER (BuiltinUnsafeValueBufferType, BuiltinType);
1524
+ DEFINE_EMPTY_CAN_TYPE_WRAPPER (BuiltinUnsafeValueBufferType, BuiltinType)
1525
1525
1526
1526
// / A builtin vector type.
1527
1527
class BuiltinVectorType : public BuiltinType, public llvm::FoldingSetNode {
@@ -1752,7 +1752,7 @@ class BuiltinIntegerLiteralType : public AnyBuiltinIntegerType {
1752
1752
1753
1753
BuiltinIntegerWidth getWidth () const = delete ;
1754
1754
};
1755
- DEFINE_EMPTY_CAN_TYPE_WRAPPER (BuiltinIntegerLiteralType, AnyBuiltinIntegerType);
1755
+ DEFINE_EMPTY_CAN_TYPE_WRAPPER (BuiltinIntegerLiteralType, AnyBuiltinIntegerType)
1756
1756
1757
1757
inline BuiltinIntegerWidth AnyBuiltinIntegerType::getWidth() const {
1758
1758
if (auto intTy = dyn_cast<BuiltinIntegerType>(this )) {
@@ -4119,7 +4119,7 @@ substOpaqueTypesWithUnderlyingTypes(ProtocolConformanceRef ref, Type origType,
4119
4119
TypeExpansionContext context);
4120
4120
namespace Lowering {
4121
4121
class TypeConverter ;
4122
- };
4122
+ }
4123
4123
4124
4124
// / SILFunctionType - The lowered type of a function value, suitable
4125
4125
// / for use by SIL.
0 commit comments