mirror of
https://github.com/boostorg/boost.git
synced 2025-04-08 06:43:09 +00:00
Add links to compatibility library
[SVN r9840]
This commit is contained in:
parent
d2d5852494
commit
8965c9383f
7 changed files with 13 additions and 9 deletions
|
@ -53,6 +53,8 @@ with any concerns you don't want to just post to the mailing list.</p>
|
|||
<h2>Latest News</h2>
|
||||
<p>Version 1.21.2<p>
|
||||
<ul>
|
||||
<li><a href="libs/compatibility/index.html">Compatibility Library</a>
|
||||
added: Help for non-conforming standard libraries from Ralf Grosse-Kunstleve.</li>
|
||||
<li><a href="libs/random/index.html">Random Number Library</a>: Split into separate headers, updated documentation, added lagged_fibonacci generator.</li>
|
||||
<li><a href="libs/integer/index.htm">Integer Library</a>: Minor portability update.</li>
|
||||
</ul>
|
||||
|
@ -168,7 +170,7 @@ efficiency improvements, co-operates with user-defined types, regression tests
|
|||
<li><a href="more/faq.htm">FAQ</a> updated.</li>
|
||||
</ul>
|
||||
<hr>
|
||||
<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B %Y" startspan -->14 March 2001<!--webbot bot="Timestamp" endspan i-checksum="27237" --></p>
|
||||
<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B %Y" startspan -->19 April 2001<!--webbot bot="Timestamp" endspan i-checksum="28287" --></p>
|
||||
|
||||
</body>
|
||||
|
||||
|
|
|
@ -37,6 +37,8 @@ content="text/html; charset=iso-8859-1">
|
|||
<li><a href="utility/call_traits.htm">call_traits</a> -
|
||||
Defines types for passing parameters from John Maddock,
|
||||
Howard Hinnant, et al.</li>
|
||||
<li><a href="compatibility/index.html">compatibility</a> - Help for
|
||||
non-conforming standard libraries from Ralf Grosse-Kunstleve.</li>
|
||||
<li><a href="compose/index.htm">compose</a> - Functional
|
||||
composition adapters for the STL from Nicolai Josuttis.</li>
|
||||
<li><a href="utility/compressed_pair.htm">compressed_pair</a>
|
||||
|
@ -129,6 +131,6 @@ how to download and install the libraries.</p>
|
|||
<hr>
|
||||
|
||||
<p>Revised <!--webbot bot="Timestamp" s-type="EDITED"
|
||||
s-format="%d %b %Y" startspan -->14 Mar 2001<!--webbot bot="Timestamp" endspan i-checksum="14885" --></p>
|
||||
s-format="%d %b %Y" startspan -->19 Apr 2001<!--webbot bot="Timestamp" endspan i-checksum="15039" --></p>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -100,7 +100,7 @@ spent discussing where to put the bicycle shed (the parking lot would
|
|||
be a modern equivalent) because everyone
|
||||
understood the issues and felt comfortable discussing them. </p>
|
||||
<hr>
|
||||
<p>Revised <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B, %Y" startspan -->08 January, 2001<!--webbot bot="Timestamp" endspan i-checksum="38324" -->
|
||||
<p>Revised <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B, %Y" startspan -->10 January, 2001<!--webbot bot="Timestamp" endspan i-checksum="38309" -->
|
||||
</p>
|
||||
|
||||
</body>
|
||||
|
|
|
@ -89,4 +89,4 @@ extern "C" void (*old_translator)(unsigned, EXCEPTION_POINTERS*)
|
|||
implied warranty, and with no claim as to its suitability for any purpose.
|
||||
|
||||
<p>Revised
|
||||
<!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->17 March, 2001<!--webbot bot="Timestamp" endspan i-checksum="40399" -->
|
||||
<!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->17 March, 2001<!--webbot bot="Timestamp" endspan i-checksum="28779" -->
|
||||
|
|
|
@ -131,7 +131,7 @@ encouraged to include keywords in the subject like "thread",
|
|||
|
||||
<hr>
|
||||
|
||||
<p>Revised <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B, %Y" startspan -->16 March, 2001<!--webbot bot="Timestamp" endspan i-checksum="28777" -->
|
||||
<p>Revised <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B, %Y" startspan -->18 March, 2001<!--webbot bot="Timestamp" endspan i-checksum="28781" -->
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -119,7 +119,7 @@ content="text/html; charset=iso-8859-1">
|
|||
<hr>
|
||||
|
||||
<p>Revised <!--webbot bot="Timestamp" startspan s-type="EDITED"
|
||||
s-format="%d %B, %Y" -->17 April, 2001<!--webbot bot="Timestamp"
|
||||
i-checksum="29819" endspan --></p>
|
||||
s-format="%d %B, %Y" -->19 April, 2001<!--webbot bot="Timestamp"
|
||||
i-checksum="29823" endspan --></p>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -271,7 +271,7 @@ C++ programmer to use the library successfully?</p>
|
|||
<h3><a name="Exception-specification">Exception-specification</a> rationale</h3>
|
||||
<p>Exception specifications [ISO 15.4] are sometimes coded to indicate what
|
||||
exceptions may be thrown, or because the programmer hopes they will improved
|
||||
performance. But consider the follow member from a smart pointer:</p>
|
||||
performance. But consider the following member from a smart pointer:</p>
|
||||
<pre> T& operator*() const throw() { return *ptr; }</pre>
|
||||
<p>This function calls no other functions; it only manipulates fundamental data
|
||||
types like pointers Therefore, no runtime behavior of the
|
||||
|
@ -339,7 +339,7 @@ suggestion. Major contributions are usually acknowledged in the
|
|||
documentation, while minor fixes are often mentioned in comments within the code
|
||||
itself.</p>
|
||||
<hr>
|
||||
<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->06 February, 2001<!--webbot bot="Timestamp" endspan i-checksum="40406" --></p>
|
||||
<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->17 April, 2001<!--webbot bot="Timestamp" endspan i-checksum="29819" --></p>
|
||||
|
||||
</body>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue