]> granicus.if.org Git - clang/commitdiff
Wrap to 80 columns, no behavior change.
authorNico Weber <nicolasweber@gmx.de>
Thu, 18 Jun 2015 20:09:49 +0000 (20:09 +0000)
committerNico Weber <nicolasweber@gmx.de>
Thu, 18 Jun 2015 20:09:49 +0000 (20:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@240041 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/Sema.cpp

index 3e0b4a54bcfeb2a8d2eab67ae6367feb8e894df8..46fec7324bc485f7eb3f1a3b26bdef4c026e6939 100644 (file)
@@ -551,10 +551,10 @@ static bool MethodsAndNestedClassesComplete(const CXXRecordDecl *RD,
     if (const CXXMethodDecl *M = dyn_cast<CXXMethodDecl>(*I))
       Complete = M->isDefined() || (M->isPure() && !isa<CXXDestructorDecl>(M));
     else if (const FunctionTemplateDecl *F = dyn_cast<FunctionTemplateDecl>(*I))
-      // If the template function is marked as late template parsed at this point,
-      // it has not been instantiated and therefore we have not performed semantic
-      // analysis on it yet, so we cannot know if the type can be considered
-      // complete.
+      // If the template function is marked as late template parsed at this
+      // point, it has not been instantiated and therefore we have not
+      // performed semantic analysis on it yet, so we cannot know if the type
+      // can be considered complete.
       Complete = !F->getTemplatedDecl()->isLateTemplateParsed() &&
                   F->getTemplatedDecl()->isDefined();
     else if (const CXXRecordDecl *R = dyn_cast<CXXRecordDecl>(*I)) {