Swift SVN r7726
This commit is contained in:
John McCall 2013-08-29 18:41:18 +00:00
Родитель 60163b464e
Коммит 83767b8032
1 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -338,9 +338,13 @@ static FuncDecl *findLibraryIntrinsic(const ASTContext &ctx,
}
static CanType stripImmediateLabels(CanType type) {
while (auto tuple = dyn_cast<TupleType>(type))
if (tuple->getNumElements() == 1)
while (auto tuple = dyn_cast<TupleType>(type)) {
if (tuple->getNumElements() == 1) {
type = tuple.getElementType(0);
} else {
break;
}
}
return type;
}