diff options
author | dim <dim@FreeBSD.org> | 2011-07-17 15:40:56 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2011-07-17 15:40:56 +0000 |
commit | 611ba3ea3300b71eb95dc4e45f20eee5dddd32e1 (patch) | |
tree | 2097d084eb235c0b12c0bff3445f4ec7bbaa8a12 /docs/InternalsManual.html | |
parent | c49018d9cce52d8c9f34b44865ec3ba8e89a1488 (diff) | |
download | FreeBSD-src-611ba3ea3300b71eb95dc4e45f20eee5dddd32e1.zip FreeBSD-src-611ba3ea3300b71eb95dc4e45f20eee5dddd32e1.tar.gz |
Vendor import of clang trunk r135360:
http://llvm.org/svn/llvm-project/cfe/trunk@135360
Diffstat (limited to 'docs/InternalsManual.html')
-rw-r--r-- | docs/InternalsManual.html | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/docs/InternalsManual.html b/docs/InternalsManual.html index 9611989..5d97609 100644 --- a/docs/InternalsManual.html +++ b/docs/InternalsManual.html @@ -68,7 +68,6 @@ td { <li><a href="#Constants">Constant Folding in the Clang AST</a></li> </ul> </li> -<li><a href="libIndex.html">The Index Library</a></li> <li><a href="#Howtos">Howto guides</a> <ul> <li><a href="#AddingAttributes">How to add an attribute</a></li> @@ -1213,8 +1212,8 @@ void g(); 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> @@ -1396,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 <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 |