Silence GCC warning and stay in 80 cols.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@95494 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp
index 6599693..521b420 100644
--- a/lib/Sema/SemaDecl.cpp
+++ b/lib/Sema/SemaDecl.cpp
@@ -5006,10 +5006,11 @@
     const CXXMethodDecl *KeyFunction = S.Context.getKeyFunction(Record);
   
     if (!KeyFunction)
-      S.ClassesWithUnmarkedVirtualMembers.push_back(std::make_pair(Record, Loc));
-  
-    if ((!KeyFunction || KeyFunction->getBody() && KeyFunction->isInlined()) && 
-        Record->getLinkage() == ExternalLinkage)
+      S.ClassesWithUnmarkedVirtualMembers.push_back(std::make_pair(Record,
+                                                                   Loc));
+
+    if ((!KeyFunction || (KeyFunction->getBody() && KeyFunction->isInlined()))
+        && Record->getLinkage() == ExternalLinkage)
       S.Diag(Record->getLocation(), diag::warn_weak_vtable) << Record;
   }
   for (DeclContext::decl_iterator D = Record->decls_begin(),