diff options
author | Douglas Gregor <dgregor@apple.com> | 2008-04-13 21:07:44 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2008-04-13 21:07:44 +0000 |
commit | 83a586ec19dd0db7fe4bc3b8e881173ae07f74f4 (patch) | |
tree | eb1f1dc07b92bcc6b7b1b2ac434ee743a0dee18b /clang/lib/Sema/IdentifierResolver.h | |
parent | f8f945499c169b5bb24cfa55d3d22f5bb23cda79 (diff) | |
download | bcm5719-llvm-83a586ec19dd0db7fe4bc3b8e881173ae07f74f4.tar.gz bcm5719-llvm-83a586ec19dd0db7fe4bc3b8e881173ae07f74f4.zip |
Introduce support for finding class and enum names via ordinary name lookup in C++
llvm-svn: 49621
Diffstat (limited to 'clang/lib/Sema/IdentifierResolver.h')
-rw-r--r-- | clang/lib/Sema/IdentifierResolver.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Sema/IdentifierResolver.h b/clang/lib/Sema/IdentifierResolver.h index bdaab694fe1..abe568d6027 100644 --- a/clang/lib/Sema/IdentifierResolver.h +++ b/clang/lib/Sema/IdentifierResolver.h @@ -38,8 +38,8 @@ public: /// The decl must already be part of the decl chain. void RemoveDecl(NamedDecl *D); - /// Lookup - Find the non-shadowed decl that belongs to a particular - /// Decl::IdentifierNamespace. + /// Lookup - Find the non-shadowed decl that belongs to one or more + /// of the specified Decl::IdentifierNamespaces. NamedDecl *Lookup(const IdentifierInfo *II, unsigned NSI); private: |