[cfe-commits] r151381 - /cfe/trunk/www/cxx_status.html

Richard Smith richard-llvm at metafoo.co.uk
Fri Feb 24 10:42:08 PST 2012


Author: rsmith
Date: Fri Feb 24 12:42:08 2012
New Revision: 151381

URL: http://llvm.org/viewvc/llvm-project?rev=151381&view=rev
Log:
cxx_status: Consistently refer to C++11 as "C++11", not as "C++'11" nor as
"C++0x". Use "C++98" to refer to C++98, not "C++". Add heading for C++98
support section.

Modified:
    cfe/trunk/www/cxx_status.html

Modified: cfe/trunk/www/cxx_status.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/cxx_status.html?rev=151381&r1=151380&r2=151381&view=diff
==============================================================================
--- cfe/trunk/www/cxx_status.html (original)
+++ cfe/trunk/www/cxx_status.html Fri Feb 24 12:42:08 2012
@@ -3,7 +3,7 @@
 <html>
 <head>
   <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-  <title>Clang - C++ and C++'11 Status</title>
+  <title>Clang - C++98 and C++11 Status</title>
   <link type="text/css" rel="stylesheet" href="menu.css">
   <link type="text/css" rel="stylesheet" href="content.css">
   <style type="text/css">
@@ -20,18 +20,20 @@
 <div id="content">
 
 <!--*************************************************************************-->
-<h1>C++ and C++'11 Support in Clang</h1>
+<h1>C++98 and C++11 Support in Clang</h1>
 <!--*************************************************************************-->
 <p>Last updated: $Date$</p>
 
+<h2 id="cxx98">C++98 implementation status</h2>
+
 <p>Clang currently implements all of the ISO C++ 1998 standard
   (including the defects addressed in the ISO C++ 2003 standard)
-  except for 'export' (which has been removed in C++'11)
+  except for 'export' (which has been removed in C++11)
   and is considered a production-quality C++ compiler.  The <a
    href="http://llvm.org/bugs/">LLVM bug tracker</a> contains a Clang
   C++ component that tracks known Clang C++ bugs.</p>
 
-<h2 id="cxx11">C++11 Implementation status</h2>
+<h2 id="cxx11">C++11 implementation status</h2>
 
   <p>Clang provides support for a number of features included in the new <a href="http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=50372">ISO C++ Standard, ISO/IEC 14882:2011</a>. The following table describes which C++11 features have been implemented in Clang and in which Clang versions they became available.</p>
 
@@ -43,7 +45,7 @@
 <table width="689" border="1" cellspacing="0">
  <tr>
     <th>Language Feature</th>
-    <th>C++0x Proposal</th>
+    <th>C++11 Proposal</th>
     <th>Available in Clang?</th>
  </tr>
      <tr>
@@ -343,7 +345,7 @@
     </tr>
 
     <tr class="separator">
-      <th align="center" colspan="3">C99 Features in C++0x</th>
+      <th align="center" colspan="3">C99 Features in C++11</th>
     </tr>
     <tr>
       <td><code>__func__</code> predefined identifier</td>





More information about the cfe-commits mailing list