From: Douglas Gregor Date: Sun, 6 Mar 2011 17:40:41 +0000 (+0000) Subject: Fix copy-and-paste typo in the transformation of Microsoft __uuidof expressions,... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3c52a218f41f091a17582d037663594d2b8dc708;p=clang 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 --- diff --git a/lib/Sema/TreeTransform.h b/lib/Sema/TreeTransform.h index 94aac52e5b..870f992c6d 100644 --- a/lib/Sema/TreeTransform.h +++ b/lib/Sema/TreeTransform.h @@ -6302,7 +6302,7 @@ TreeTransform::TransformCXXUuidofExpr(CXXUuidofExpr *E) { TInfo == E->getTypeOperandSourceInfo()) return SemaRef.Owned(E); - return getDerived().RebuildCXXTypeidExpr(E->getType(), + return getDerived().RebuildCXXUuidofExpr(E->getType(), E->getLocStart(), TInfo, E->getLocEnd());