diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 6f46b916fb30..f82d67ce1ca9 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2003-04-20 Paolo Carlini + + * docs/html/ext/howto.html ('LWG Issues'): + Add issues 19, 90, 171, 231, 271. + 2003-04-20 Paolo Carlini * include/bits/sstream.tcc (pbackfail): Remove redundant diff --git a/libstdc++-v3/docs/html/ext/howto.html b/libstdc++-v3/docs/html/ext/howto.html index 07e5c2776a2b..67bf2d316c54 100644 --- a/libstdc++-v3/docs/html/ext/howto.html +++ b/libstdc++-v3/docs/html/ext/howto.html @@ -425,6 +425,13 @@
Apparently extracting Boolean values was messed up...
+
19: + "Noconv" definition too vague +
+
If codecvt::do_in returns noconv there are + no changes to the values in [to, to_limit). +
+
22: Member open vs flags
@@ -477,6 +484,13 @@ max_size() rather than npos. +
90: + Incorrect description of operator>> for strings +
+
The effect contain isspace(c,getloc()) which must be + replaced by isspace(c,is.getloc()). +
+
109: Missing binders for non-const sequence elements
@@ -531,6 +545,12 @@ calculating an incorrect number of characters to write. +
171: + Strange seekpos() semantics due to joint position +
+
Quite complex to summarize... +
+
181: make_pair() unintended behavior
@@ -559,6 +579,13 @@ for const instances. +
231: + Precision in iostream? +
+
For conversion from a floating-point type, str.precision() + is specified in the conversion specification. +
+
251: basic_stringbuf missing allocator_type
@@ -579,6 +606,13 @@ are trivial), since no description of them was ever given. +
271: + basic_iostream missing typedefs +
+
The typedefs it inherits from its base classes can't be used, since + (for example) basic_iostream<T>::traits_type is ambiguous. +
+
275: Wrong type in num_get::get() overloads