1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

make owen happy by being explicit.

llvm-svn: 78688
This commit is contained in:
Chris Lattner 2009-08-11 17:38:15 +00:00
parent 2930c2c870
commit 8d7c0ec32a

View File

@ -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>