From 50b30e0bf36e4a77dd92a2f47735e7af20c9bf33 Mon Sep 17 00:00:00 2001
From: Phil Edwards
Date: Mon, 3 Dec 2001 00:33:57 +0000
Subject: [PATCH] howto.html: Update list of implemented DRs.
2001-12-02 Phil Edwards
* docs/html/ext/howto.html: Update list of implemented DRs.
* docs/html/ext/lwg-active.html: Import R20 from upstream.
* docs/html/ext/lwg-defects.html: Import R20 from upstream.
From-SVN: r47540
---
libstdc++-v3/ChangeLog | 6 +
libstdc++-v3/docs/html/ext/howto.html | 31 +-
libstdc++-v3/docs/html/ext/lwg-active.html | 4419 ++++++++-----------
libstdc++-v3/docs/html/ext/lwg-defects.html | 2304 +++++++++-
4 files changed, 3895 insertions(+), 2865 deletions(-)
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 2780ccededa..5ee46e82c69 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,9 @@
+2001-12-02 Phil Edwards
+
+ * docs/html/ext/howto.html: Update list of implemented DRs.
+ * docs/html/ext/lwg-active.html: Import R20 from upstream.
+ * docs/html/ext/lwg-defects.html: Import R20 from upstream.
+
2001-11-30 Benjamin Kosnik
libstdc++/3150
diff --git a/libstdc++-v3/docs/html/ext/howto.html b/libstdc++-v3/docs/html/ext/howto.html
index e5518cf9a99..5b44796e74f 100644
--- a/libstdc++-v3/docs/html/ext/howto.html
+++ b/libstdc++-v3/docs/html/ext/howto.html
@@ -375,9 +375,11 @@
Here are the issues which have resulted in code changes to the library.
The links are to the specific defect reports from a partial
- copy of the
- Issues List. You can read the full version online at the ISO C++
- Committee homepage, linked to on the GCC "Readings" page. If
+ copy of the Issues List. You can read the full version online
+ at the ISO C++
+ Committee homepage, linked to on the
+ GCC "Readings"
+ page. If
you spend a lot of time reading the issues, we recommend downloading
the ZIP file and reading them locally.
@@ -396,8 +398,6 @@
until an issue has reached DR status.
-
-
- 5:
string::compare specification questionable
- This should be two overloaded functions rather than a single function.
@@ -406,6 +406,10 @@
Bad bool parsing
- Apparently extracting Boolean values was messed up...
+
- 22:
+ Member open vs flags
+
- Re-opening a file stream does not clear the state flags.
+
- 25:
String operator<< uses width() value wrong
- Padding issues.
@@ -449,6 +453,14 @@
replace the function with a const one; we have instead provided an
overloaded version with identical contents.
+
- 117:
+ basic_ostream uses nonexistent num_put member functions
+
num_put::put()
was overloaded on the wrong types.
+
+ - 118:
+ basic_istream uses nonexistent num_get member functions
+
- Same as 177, but for
num_get::get()
.
+
- 129:
Need error indication from seekp() and seekg()
- These functions set
failbit
on error now.
@@ -497,6 +509,15 @@
- The default ctor would build its members from copies of temporaries;
now it simply uses their respective default ctors.
+
- 266:
+ bad_exception::~bad_exception() missing Effects clause
+
- The
bad_
* classes no longer have destructors (they
+ are trivial), since no description of them was ever given.
+
+ - 275:
+ Wrong type in num_get::get() overloads
+
- Similar to 118.
+