r196565 - Add introductory paragraph to the C++ status page

Alp Toker alp at nuanti.com
Thu Dec 5 22:35:50 PST 2013


Author: alp
Date: Fri Dec  6 00:35:49 2013
New Revision: 196565

URL: http://llvm.org/viewvc/llvm-project?rev=196565&view=rev
Log:
Add introductory paragraph to the C++ status page

Use internal links to provide easier access to recent and ongoing work.

Also shift up the order of standards in the page title in order to avoid web
search results focusing on C++98 in the summary.

This is done to highlight the modern standards support in clang that was
previously languishing at the bottom of the page.

  "C++98/03 is sooooo yesterday" - dgregor

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=196565&r1=196564&r2=196565&view=diff
==============================================================================
--- cfe/trunk/www/cxx_status.html (original)
+++ cfe/trunk/www/cxx_status.html Fri Dec  6 00:35:49 2013
@@ -3,7 +3,7 @@
 <html>
 <head>
   <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-  <title>Clang - C++98, C++11, and C++14 Status</title>
+  <title>Clang - C++14, C++11 and C++98 Status</title>
   <link type="text/css" rel="stylesheet" href="menu.css">
   <link type="text/css" rel="stylesheet" href="content.css">
   <style type="text/css">
@@ -23,13 +23,26 @@
 <div id="content">
 
 <!--*************************************************************************-->
-<h1>C++98, C++11, and C++14 Support in Clang</h1>
+<h1>C++14, C++11 and C++98 Support in Clang</h1>
 <!--*************************************************************************-->
 <p>Last updated: $Date$</p>
 
+<p>Clang fully implements all published ISO C++ standards including <a
+href="#cxx11">C++11</a> as well as the upcoming provisionally named <a
+href="#cxx14">C++14</a>.</p>
+
+<p>The LLVM community is continually striving to improve C++ standards
+compliance between releases by submitting and tracking <a
+href="cxx_dr_status.html">C++ Defect Reports</a> and implementing resolutions
+as they become available.</p>
+
+<p>Experimental work is also under way to implement <a href="#ts">C++ Technical
+Specifications</a> that will help drive the future of the C++ programming
+language.</p>
+
 <h2 id="cxx98">C++98 implementation status</h2>
 
-<p>Clang currently implements all of the ISO C++ 1998 standard
+<p>Clang implements all of the ISO C++ 1998 standard
   (including the defects addressed in the ISO C++ 2003 standard)
   except for <tt>export</tt> (which has been removed in C++11)
   and is considered a production-quality C++ compiler.  The <a





More information about the cfe-commits mailing list