diff options
author | Francois Pichet <pichet2000@gmail.com> | 2010-12-20 05:44:28 +0000 |
---|---|---|
committer | Francois Pichet <pichet2000@gmail.com> | 2010-12-20 05:44:28 +0000 |
commit | d8039129f3da19819696209e4005cc73907f5c3b (patch) | |
tree | 9751d18aa7d958aca9bd7637407081d55a494956 /lib | |
parent | f453fca06426cfb5fccf237011f19e8241b9d1bc (diff) |
XFAIL vtable-debug-info.cpp on WIN32 and fix curly brace.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122230 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Sema/SemaExprCXX.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Sema/SemaExprCXX.cpp b/lib/Sema/SemaExprCXX.cpp index d23401c666..4ac162a9f9 100644 --- a/lib/Sema/SemaExprCXX.cpp +++ b/lib/Sema/SemaExprCXX.cpp @@ -374,8 +374,7 @@ Sema::ActOnCXXTypeid(SourceLocation OpLoc, SourceLocation LParenLoc, // Get the CXXRecordDecl associated with QT bypassing 1 level of pointer, // reference or array type. -static CXXRecordDecl *GetCXXRecordOfUuidArg(QualType QT) -{ +static CXXRecordDecl *GetCXXRecordOfUuidArg(QualType QT) { Type* Ty = QT.getTypePtr();; if (QT->isPointerType() || QT->isReferenceType()) Ty = QT->getPointeeType().getTypePtr(); |