From: Francois Pichet Date: Fri, 23 Sep 2011 16:02:49 +0000 (+0000) Subject: Fix wrong comment about reentering template scope for -fdelayed-template-parsing. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=901a9a41fb44108fce7066e5604e17d9b49c981b;p=clang Fix wrong comment about reentering template scope for -fdelayed-template-parsing. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140382 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Parse/ParseTemplate.cpp b/lib/Parse/ParseTemplate.cpp index 955f61c492..5cc604bde1 100644 --- a/lib/Parse/ParseTemplate.cpp +++ b/lib/Parse/ParseTemplate.cpp @@ -1175,7 +1175,7 @@ void Parser::ParseLateTemplatedFuncDef(LateParsedTemplatedFunction &LMT) { DD = DD->getLexicalParent(); } - // Reenter the DeclContext from outmost to innermost. + // Reenter template scopes from outmost to innermost. SmallVector::reverse_iterator II = DeclContextToReenter.rbegin(); for (; II != DeclContextToReenter.rend(); ++II) {