Still not used to put the * next to the variable name.

llvm-svn: 129426
This commit is contained in:
Francois Pichet 2011-04-13 02:44:57 +00:00
parent 48c946e5ef
commit efc283c076
1 changed files with 1 additions and 1 deletions

View File

@ -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<CXXRecordDecl>(CurContext);
for (CXXRecordDecl::base_class_const_iterator Base = RD->bases_begin(),