Fix wrong comment about reentering template scope for -fdelayed-template-parsing.
llvm-svn: 140382
diff --git a/clang/lib/Parse/ParseTemplate.cpp b/clang/lib/Parse/ParseTemplate.cpp
index 955f61c..5cc604b 100644
--- a/clang/lib/Parse/ParseTemplate.cpp
+++ b/clang/lib/Parse/ParseTemplate.cpp
@@ -1175,7 +1175,7 @@
DD = DD->getLexicalParent();
}
- // Reenter the DeclContext from outmost to innermost.
+ // Reenter template scopes from outmost to innermost.
SmallVector<DeclContext*, 4>::reverse_iterator II =
DeclContextToReenter.rbegin();
for (; II != DeclContextToReenter.rend(); ++II) {