From 3441a520c63a5609abdd35614753a6059ac134fc Mon Sep 17 00:00:00 2001 From: Francois Pichet Date: Wed, 13 Apr 2011 02:44:57 +0000 Subject: [PATCH] Still not used to put the * next to the variable name. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@129426 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Sema/SemaDecl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp index 4338ddaa1a..2917424581 100644 --- a/lib/Sema/SemaDecl.cpp +++ b/lib/Sema/SemaDecl.cpp @@ -266,7 +266,7 @@ DeclSpec::TST Sema::isTagName(IdentifierInfo &II, Scope *S) { /// @endcode bool Sema::isMicrosoftMissingTypename(const CXXScopeSpec *SS) { if (CurContext->isRecord()) { - const Type* Ty = SS->getScopeRep()->getAsType(); + const Type *Ty = SS->getScopeRep()->getAsType(); CXXRecordDecl *RD = cast(CurContext); for (CXXRecordDecl::base_class_const_iterator Base = RD->bases_begin(), -- 2.40.0