This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Mention TR1 in the 4.1 changes page.


Here is a short patch that I thought could go into the main wwwdocs before 4.1 goes out.

It mentions the TR1 additions shared_ptr/weak_ptr array, tuple, unordered_xxx as being ready.

Anything else I should mention? Have I overstated anything?


Ed


? htdocs/gcc-4.1/changes.html.new
Index: htdocs/gcc-4.1/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.1/changes.html,v
retrieving revision 1.16
diff -c -r1.16 changes.html
*** htdocs/gcc-4.1/changes.html	7 Feb 2006 19:09:12 -0000	1.16
--- htdocs/gcc-4.1/changes.html	13 Feb 2006 06:47:13 -0000
***************
*** 200,205 ****
--- 200,221 ----
       parameters; therefore, it cannot be bound to <code>C</code> which
       has only one parameter.
      </li>
+     <li>
+      Parts of the C++ Library Extensions Technical Report 1 (TR1) have been implemented.
+      In particular, array, tuple, shared_ptr/weak_ptr, and hashed containers
+      unordered_set, unordered_multiset, unordered_map, unordered_multimap are ready.
+      These classes are declared in a directory tr1 and in namespace std::tr1 e.g.
+      <pre>
+        #include &lt;tr1/array&gt;
+ 
+        int main(int, char**)
+        {
+          tr1::array&lt;double,3&gt;  pt3;
+          ...
+          return 0;
+        }
+      </pre>
+     </li>
    </ul>
  
  <h3>Objective-C++</h3>

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]