aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/IdentifierResolver.cpp
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2008-05-15 17:26:35 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2008-05-15 17:26:35 +0000
commit3d0d83a4a0694c1bf4509c893162f0cdf454ee14 (patch)
treef51fdbc9c799d28883725cfb4e3a7e10cf9847b0 /lib/Sema/IdentifierResolver.cpp
parent7ea2e3f6aae9b7511686d3d26dee690fee81c3aa (diff)
Comments fix.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@51151 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/IdentifierResolver.cpp')
-rw-r--r--lib/Sema/IdentifierResolver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/IdentifierResolver.cpp b/lib/Sema/IdentifierResolver.cpp
index fada62f10b..33b2102fd1 100644
--- a/lib/Sema/IdentifierResolver.cpp
+++ b/lib/Sema/IdentifierResolver.cpp
@@ -67,7 +67,7 @@ void IdentifierResolver::AddDecl(NamedDecl *D) {
}
/// AddShadowedDecl - Link the decl to its shadowed decl chain putting it
-/// after the decl that the iterator points to, thus the 'CIT' decl will be
+/// after the decl that the iterator points to, thus the 'Shadow' decl will be
/// encountered before the 'D' decl.
void IdentifierResolver::AddShadowedDecl(NamedDecl *D, NamedDecl *Shadow) {
assert(D->getIdentifier() == Shadow->getIdentifier() && "Different ids!");