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)
llvm-svn: 240041

clang/lib/Sema/Sema.cpp

index 3e0b4a5..46fec73 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)) {