[llvm-commits] [llvm] r78688 - /llvm/trunk/docs/CodingStandards.html

Chris Lattner sabre at nondot.org
Tue Aug 11 10:38:16 PDT 2009


Author: lattner
Date: Tue Aug 11 12:38:15 2009
New Revision: 78688

URL: http://llvm.org/viewvc/llvm-project?rev=78688&view=rev
Log:
make owen happy by being explicit.

Modified:
    llvm/trunk/docs/CodingStandards.html

Modified: llvm/trunk/docs/CodingStandards.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CodingStandards.html?rev=78688&r1=78687&r2=78688&view=diff

==============================================================================
--- llvm/trunk/docs/CodingStandards.html (original)
+++ llvm/trunk/docs/CodingStandards.html Tue Aug 11 12:38:15 2009
@@ -419,7 +419,8 @@
 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>
 





More information about the llvm-commits mailing list