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

llvm-svn: 129426
diff --git a/clang/lib/Sema/SemaDecl.cpp b/clang/lib/Sema/SemaDecl.cpp
index 4338dda..2917424 100644
--- a/clang/lib/Sema/SemaDecl.cpp
+++ b/clang/lib/Sema/SemaDecl.cpp
@@ -266,7 +266,7 @@
 /// @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(),