diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-11 17:38:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-11 17:38:15 +0000 |
commit | 5731020b2f5a723480aa0fa1e064cb6b3f8d12a7 (patch) | |
tree | 4e25834a1e80d93706082b18d759f23a84c4b450 /docs/CodingStandards.html | |
parent | c93d8373c93159c590838957b3194900caeb8a03 (diff) |
make owen happy by being explicit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78688 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CodingStandards.html')
-rw-r--r-- | docs/CodingStandards.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/CodingStandards.html b/docs/CodingStandards.html index 2fe3bdc9e2..ff707f3a84 100644 --- a/docs/CodingStandards.html +++ b/docs/CodingStandards.html @@ -419,7 +419,8 @@ different symbols based on whether <tt>class</tt> or <tt>struct</tt> was used to declare the symbol. This can lead to problems at link time.</p> <p>So, the rule for LLVM is to always use the <tt>class</tt> keyword, unless -<b>all</b> members are public, in which case <tt>struct</tt> is allowed.</p> +<b>all</b> members are public and the type is a C++ "POD" type, in which case +<tt>struct</tt> is allowed.</p> </div> |