diff options
author | Chris Lattner <sabre@nondot.org> | 2011-07-23 19:59:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-07-23 19:59:08 +0000 |
commit | 628ed39dcf407b22ab19dd3d06c1762e68165621 (patch) | |
tree | ffabbf86580ed6366a484a3fa168c8a79d80ec14 /docs/LangRef.html | |
parent | ec8f1ea22b25ac950b4f287bf7ecb224d071c9cb (diff) | |
download | external_llvm-628ed39dcf407b22ab19dd3d06c1762e68165621.zip external_llvm-628ed39dcf407b22ab19dd3d06c1762e68165621.tar.gz external_llvm-628ed39dcf407b22ab19dd3d06c1762e68165621.tar.bz2 |
clarify that opaque is actually a struct type, PR10430
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135861 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/LangRef.html')
-rw-r--r-- | docs/LangRef.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index 225173e..931e975 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -75,7 +75,7 @@ <ol> <li><a href="#t_array">Array Type</a></li> <li><a href="#t_struct">Structure Type</a></li> - <li><a href="#t_opaque">Opaque Type</a></li> + <li><a href="#t_opaque">Opaque Structure Types</a></li> <li><a href="#t_vector">Vector Type</a></li> </ol> </li> @@ -1980,15 +1980,15 @@ as if it writes to the relevant surrounding bytes. <!-- _______________________________________________________________________ --> <h4> - <a name="t_opaque">Opaque Type</a> + <a name="t_opaque">Opaque Structure Types</a> </h4> <div> <h5>Overview:</h5> -<p>Opaque types are used to represent named structure types that do not have a - body specified. This corresponds (for example) to the C notion of a forward - declared structure.</p> +<p>Opaque structure types are used to represent named structure types that do + not have a body specified. This corresponds (for example) to the C notion of + a forward declared structure.</p> <h5>Syntax:</h5> <pre> |