[cfe-commits] r134514 - /cfe/trunk/docs/InternalsManual.html
Jonathan D. Turner
jonathan.d.turner at gmail.com
Wed Jul 6 11:12:36 PDT 2011
Author: jonturner
Date: Wed Jul 6 13:12:36 2011
New Revision: 134514
URL: http://llvm.org/viewvc/llvm-project?rev=134514&view=rev
Log:
Update docs to remove reference to OverloadedFunctionDecl and replace it with DeclContext::lookup_result.
Modified:
cfe/trunk/docs/InternalsManual.html
Modified: cfe/trunk/docs/InternalsManual.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/InternalsManual.html?rev=134514&r1=134513&r2=134514&view=diff
==============================================================================
--- cfe/trunk/docs/InternalsManual.html (original)
+++ cfe/trunk/docs/InternalsManual.html Wed Jul 6 13:12:36 2011
@@ -1212,8 +1212,8 @@
void g(int);
</pre>
<p>the <code>DeclContext::lookup</code> operation will return
- an <code>OverloadedFunctionDecl</code> that contains both
- declarations of "g". Clients that perform semantic analysis on a
+ a <code>DeclContext::lookup_result</code> 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.</p>
@@ -1395,8 +1395,8 @@
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 <code>N</code> for
- "f" will return an <code>OverloadedFunctionDecl</code> that contains
- both declarations of "f".</p>
+ "f" will return a <code>DeclContext::lookup_result</code> that contains
+ a range of iterators over declarations of "f".</p>
<p><code>DeclContext</code> manages multiply-defined declaration
contexts internally. The
More information about the cfe-commits
mailing list