Fix copy-and-paste typo in the transformation of Microsoft __uuidof expressions, from Eric Niebler via John Wiegley

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@127123 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Douglas Gregor 2011-03-06 17:40:41 +00:00
Родитель ec356c320a
Коммит 3c52a218f4
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -6302,7 +6302,7 @@ TreeTransform<Derived>::TransformCXXUuidofExpr(CXXUuidofExpr *E) {
TInfo == E->getTypeOperandSourceInfo()) TInfo == E->getTypeOperandSourceInfo())
return SemaRef.Owned(E); return SemaRef.Owned(E);
return getDerived().RebuildCXXTypeidExpr(E->getType(), return getDerived().RebuildCXXUuidofExpr(E->getType(),
E->getLocStart(), E->getLocStart(),
TInfo, TInfo,
E->getLocEnd()); E->getLocEnd());