From: Argyrios Kyrtzidis Date: Thu, 15 May 2008 17:26:35 +0000 (+0000) Subject: Comments fix. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d0d83a4a0694c1bf4509c893162f0cdf454ee14;p=clang Comments fix. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@51151 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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!"); diff --git a/lib/Sema/IdentifierResolver.h b/lib/Sema/IdentifierResolver.h index 7ba252b5bc..cb5cac6190 100644 --- a/lib/Sema/IdentifierResolver.h +++ b/lib/Sema/IdentifierResolver.h @@ -335,7 +335,7 @@ public: void 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 AddShadowedDecl(NamedDecl *D, NamedDecl *Shadow);