mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Merge pull request #82652 from xedin/rdar-153461854-serialization-fix
[Serialization] A temporary fix for `LocatableType`
This commit is contained in:
@@ -5608,8 +5608,8 @@ public:
|
||||
llvm_unreachable("error union types do not persist in the AST");
|
||||
}
|
||||
|
||||
void visitLocatableType(const LocatableType *) {
|
||||
llvm_unreachable("locatable types do not persist in the AST");
|
||||
void visitLocatableType(const LocatableType *LT) {
|
||||
visit(LT->getSinglyDesugaredType());
|
||||
}
|
||||
|
||||
void visitBuiltinTypeImpl(Type ty) {
|
||||
|
||||
Reference in New Issue
Block a user