From: Jonathan D. Turner Date: Wed, 6 Jul 2011 18:12:36 +0000 (+0000) Subject: Update docs to remove reference to OverloadedFunctionDecl and replace it with DeclCon... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d322429a1fd0ecc423bb2a9a1cd5cf1ecd102913;p=clang Update docs to remove reference to OverloadedFunctionDecl and replace it with DeclContext::lookup_result. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@134514 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/InternalsManual.html b/docs/InternalsManual.html index 00bc54af5b..5d97609373 100644 --- a/docs/InternalsManual.html +++ b/docs/InternalsManual.html @@ -1212,8 +1212,8 @@ void g(); void g(int);

the DeclContext::lookup operation will return - an OverloadedFunctionDecl that contains both - declarations of "g". Clients that perform semantic analysis on a + a DeclContext::lookup_result that contains a range of iterators + over declarations of "g". Clients that perform semantic analysis on a program that is not concerned with the actual source code will primarily use this semantics-centric view.

@@ -1395,8 +1395,8 @@ namespace N { nodes in Snippet #1, each of which is a declaration context that contains a single declaration of "f". However, the semantics-centric view provided by name lookup into the namespace N for - "f" will return an OverloadedFunctionDecl that contains - both declarations of "f".

+ "f" will return a DeclContext::lookup_result that contains + a range of iterators over declarations of "f".

DeclContext manages multiply-defined declaration contexts internally. The