random cleanup


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64673 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Sema/SemaType.cpp b/lib/Sema/SemaType.cpp
index 00bfb13..021e18e 100644
--- a/lib/Sema/SemaType.cpp
+++ b/lib/Sema/SemaType.cpp
@@ -680,8 +680,7 @@
 /// qualifiers on T1 and T2 are ignored. This function will typically
 /// be called in a loop that successively "unwraps" pointer and
 /// pointer-to-member types to compare them at each level.
-bool Sema::UnwrapSimilarPointerTypes(QualType& T1, QualType& T2)
-{
+bool Sema::UnwrapSimilarPointerTypes(QualType& T1, QualType& T2) {
   const PointerType *T1PtrType = T1->getAsPointerType(),
                     *T2PtrType = T2->getAsPointerType();
   if (T1PtrType && T2PtrType) {