diff options
author | Paolo Carlini <pcarlini@unitus.it> | 2003-04-21 00:18:49 +0200 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2003-04-20 22:18:49 +0000 |
commit | 6f9106c2ec710be644919df873af73e52a14959f (patch) | |
tree | d93986dca1c77104387b58f986bf97e5bfa4db11 /libstdc++-v3 | |
parent | 41c32c985faab94f68575f187800595b95267b4e (diff) | |
download | gcc-6f9106c2ec710be644919df873af73e52a14959f.zip gcc-6f9106c2ec710be644919df873af73e52a14959f.tar.gz gcc-6f9106c2ec710be644919df873af73e52a14959f.tar.bz2 |
howto.html ('LWG Issues'): Add issues 19, 90, 171, 231, 271.
2003-04-20 Paolo Carlini <pcarlini@unitus.it>
* docs/html/ext/howto.html ('LWG Issues'):
Add issues 19, 90, 171, 231, 271.
From-SVN: r65863
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/docs/html/ext/howto.html | 34 |
2 files changed, 39 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 6f46b91..f82d67c 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,10 @@ 2003-04-20 Paolo Carlini <pcarlini@unitus.it> + * docs/html/ext/howto.html ('LWG Issues'): + Add issues 19, 90, 171, 231, 271. + +2003-04-20 Paolo Carlini <pcarlini@unitus.it> + * include/bits/sstream.tcc (pbackfail): Remove redundant NULL pointer check from test involving _M_in_*. (overflow, seekoff, seekpos): Const qualify bool variables. diff --git a/libstdc++-v3/docs/html/ext/howto.html b/libstdc++-v3/docs/html/ext/howto.html index 07e5c27..67bf2d3 100644 --- a/libstdc++-v3/docs/html/ext/howto.html +++ b/libstdc++-v3/docs/html/ext/howto.html @@ -425,6 +425,13 @@ <dd>Apparently extracting Boolean values was messed up... </dd> + <dt><a href="lwg-defects.html#19">19</a>: + <em>"Noconv" definition too vague</em> + </dt> + <dd>If <code>codecvt::do_in</code> returns <code>noconv</code> there are + no changes to the values in <code>[to, to_limit)</code>. + </dd> + <dt><a href="lwg-defects.html#22">22</a>: <em>Member open vs flags</em> </dt> @@ -477,6 +484,13 @@ <code>max_size()</code> rather than <code>npos</code>. </dd> + <dt><a href="lwg-defects.html#90">90</a>: + <em>Incorrect description of operator>> for strings</em> + </dt> + <dd>The effect contain <code>isspace(c,getloc())</code> which must be + replaced by <code>isspace(c,is.getloc())</code>. + </dd> + <dt><a href="lwg-defects.html#109">109</a>: <em>Missing binders for non-const sequence elements</em> </dt> @@ -531,6 +545,12 @@ calculating an incorrect number of characters to write. </dd> + <dt><a href="lwg-defects.html#171">171</a>: + <em>Strange seekpos() semantics due to joint position</em> + </dt> + <dd>Quite complex to summarize... + </dd> + <dt><a href="lwg-defects.html#181">181</a>: <em>make_pair() unintended behavior</em> </dt> @@ -559,6 +579,13 @@ for const instances. </dd> + <dt><a href="lwg-active.html#231">231</a>: + <em>Precision in iostream?</em> + </dt> + <dd>For conversion from a floating-point type, <code>str.precision()</code> + is specified in the conversion specification. + </dd> + <dt><a href="lwg-defects.html#251">251</a>: <em>basic_stringbuf missing allocator_type</em> </dt> @@ -579,6 +606,13 @@ are trivial), since no description of them was ever given. </dd> + <dt><a href="lwg-defects.html#271">271</a>: + <em>basic_iostream missing typedefs</em> + </dt> + <dd>The typedefs it inherits from its base classes can't be used, since + (for example) <code>basic_iostream<T>::traits_type</code> is ambiguous. + </dd> + <dt><a href="lwg-defects.html#275">275</a>: <em>Wrong type in num_get::get() overloads</em> </dt> |