Skip to content

Commit f47a519

Browse files
committed
[no-implicit-copy] Rename CanMoveOnlyType -> CanSILMoveOnlyWrappedType.
I already fixed SILMoveOnlyType -> SILMoveOnlyWrappedType in a previous commit and just forgot to hit the canonical type wrapper.
1 parent f13a521 commit f47a519

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/swift/AST/Types.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5004,7 +5004,7 @@ DEFINE_EMPTY_CAN_TYPE_WRAPPER(SILBoxType, Type)
50045004

50055005
class SILMoveOnlyWrappedType;
50065006
class SILModule; // From SIL
5007-
typedef CanTypeWrapper<SILMoveOnlyWrappedType> CanMoveOnlyType;
5007+
typedef CanTypeWrapper<SILMoveOnlyWrappedType> CanSILMoveOnlyWrappedType;
50085008

50095009
/// A wrapper type that marks an inner type as being a move only value. Can not
50105010
/// be written directly at the Swift level, instead it is triggered by adding
@@ -5022,7 +5022,7 @@ class SILMoveOnlyWrappedType final : public TypeBase,
50225022
public:
50235023
CanType getInnerType() const { return innerType; }
50245024

5025-
static CanMoveOnlyType get(CanType innerType);
5025+
static CanSILMoveOnlyWrappedType get(CanType innerType);
50265026

50275027
static bool classof(const TypeBase *T) {
50285028
return T->getKind() == TypeKind::SILMoveOnlyWrapped;

0 commit comments

Comments
 (0)