Whitespace fixes.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@157469 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/AST/Decl.cpp b/lib/AST/Decl.cpp
index 62cc62a..7b7fa42 100644
--- a/lib/AST/Decl.cpp
+++ b/lib/AST/Decl.cpp
@@ -401,8 +401,7 @@
           = dyn_cast<ClassTemplateSpecializationDecl>(Tag)) {
       if (shouldConsiderTemplateLV(spec)) {
         // From the template.
-        LV.merge(getLVForDecl(spec->getSpecializedTemplate(),
-                              true));
+        LV.merge(getLVForDecl(spec->getSpecializedTemplate(), true));
 
         // The arguments at which the template was instantiated.
         const TemplateArgumentList &TemplateArgs = spec->getTemplateArgs();
@@ -546,9 +545,9 @@
         // class template specializations.
         LV.mergeWithMin(getLVForTemplateArgumentList(spec->getTemplateArgs(),
                                                      OnlyTemplate));
-      if (!OnlyTemplate)
-        LV.merge(getLVForTemplateParameterList(
-                    spec->getSpecializedTemplate()->getTemplateParameters()));
+        if (!OnlyTemplate)
+          LV.merge(getLVForTemplateParameterList(
+                      spec->getSpecializedTemplate()->getTemplateParameters()));
       }
     }