From 28430f33a29ae461f7b020d270d47b99687c25e7 Mon Sep 17 00:00:00 2001 From: paolo Date: Sun, 27 Jun 2004 20:48:48 +0000 Subject: [PATCH] 2004-06-27 Paolo Carlini * docs/html/17_intro/contribute.html: Update some links. * docs/html/17_intro/porting-howto.html: Likewise. * docs/html/17_intro/porting-howto.xml: Likewise. * docs/html/18_support/howto.html: Likewise. * docs/html/21_strings/howto.html: Likewise. * docs/html/27_io/howto.html: Likewise. * docs/html/configopts.html: Likewise. * docs/html/ext/howto.html: Likewise. * docs/html/faq/index.html: Likewise. * docs/html/install.html: Don't mention 2.x compilers. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83745 138bc75d-0d04-0410-961f-82ee72b054a4 --- libstdc++-v3/ChangeLog | 13 +++++++++++++ libstdc++-v3/docs/html/17_intro/contribute.html | 10 +++++----- libstdc++-v3/docs/html/17_intro/porting-howto.html | 4 ---- libstdc++-v3/docs/html/17_intro/porting-howto.xml | 4 ---- libstdc++-v3/docs/html/18_support/howto.html | 6 +++--- libstdc++-v3/docs/html/21_strings/howto.html | 2 +- libstdc++-v3/docs/html/27_io/howto.html | 4 ++-- libstdc++-v3/docs/html/configopts.html | 2 +- libstdc++-v3/docs/html/ext/howto.html | 2 +- libstdc++-v3/docs/html/faq/index.html | 4 ++-- libstdc++-v3/docs/html/install.html | 5 +---- 11 files changed, 29 insertions(+), 27 deletions(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 8343b5e..ad9c7f5 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,18 @@ 2004-06-27 Paolo Carlini + * docs/html/17_intro/contribute.html: Update some links. + * docs/html/17_intro/porting-howto.html: Likewise. + * docs/html/17_intro/porting-howto.xml: Likewise. + * docs/html/18_support/howto.html: Likewise. + * docs/html/21_strings/howto.html: Likewise. + * docs/html/27_io/howto.html: Likewise. + * docs/html/configopts.html: Likewise. + * docs/html/ext/howto.html: Likewise. + * docs/html/faq/index.html: Likewise. + * docs/html/install.html: Don't mention 2.x compilers. + +2004-06-27 Paolo Carlini + * include/ext/rope: Trivial formatting fixes. * include/ext/ropeimpl.h: Likewise. diff --git a/libstdc++-v3/docs/html/17_intro/contribute.html b/libstdc++-v3/docs/html/17_intro/contribute.html index cc95689..0013d60 100644 --- a/libstdc++-v3/docs/html/17_intro/contribute.html +++ b/libstdc++-v3/docs/html/17_intro/contribute.html @@ -6,7 +6,7 @@ How to contribute - + @@ -36,17 +36,17 @@ and their web-site is right here. (And if you've already registered with them, clicking this link will take you to directly to the place where you can -buy the standard on-line.) +buy the standard on-line.)
  • The library working group bugs, and known defects, can be obtained here: - http://www.dkuug.dk/jtc1/sc22/wg21 + http://www.open-std.org/jtc1/sc22/wg21
  • -
  • The newsgroup dedicated to standardization issues is comp.std.c++: this FAQ for this group is quite useful and can be found here . +
  • The newsgroup dedicated to standardization issues is comp.std.c++: this FAQ for this group is quite useful and can be found here .
  • -
  • Peruse the GNU Coding Standards, and chuckle when you hit the part about "Using Languages Other Than C." +
  • Peruse the GNU Coding Standards, and chuckle when you hit the part about "Using Languages Other Than C."
  • Be familiar with the extensions that preceded these general GNU rules. These style issues for libstdc++ can be found in the file C++STYLE, located in the root level of the distribution, or here. diff --git a/libstdc++-v3/docs/html/17_intro/porting-howto.html b/libstdc++-v3/docs/html/17_intro/porting-howto.html index 8e8ca99..4a2d91a 100644 --- a/libstdc++-v3/docs/html/17_intro/porting-howto.html +++ b/libstdc++-v3/docs/html/17_intro/porting-howto.html @@ -312,10 +312,6 @@ usual -mnemonic -none - - libsigc++ conservative-impl diff --git a/libstdc++-v3/docs/html/17_intro/porting-howto.xml b/libstdc++-v3/docs/html/17_intro/porting-howto.xml index e146b87..cdffdcf 100644 --- a/libstdc++-v3/docs/html/17_intro/porting-howto.xml +++ b/libstdc++-v3/docs/html/17_intro/porting-howto.xml @@ -280,10 +280,6 @@ o clean up the section-numbering usual - mnemonic - none - - libsigc++ conservative-impl diff --git a/libstdc++-v3/docs/html/18_support/howto.html b/libstdc++-v3/docs/html/18_support/howto.html index 070d3c3..eff1c75 100644 --- a/libstdc++-v3/docs/html/18_support/howto.html +++ b/libstdc++-v3/docs/html/18_support/howto.html @@ -68,7 +68,7 @@ always a pointer.)

    In his book - Effective C++, + Effective C++, Scott Meyers points out that the best way to solve this problem is to not overload on pointer-vs-integer types to begin with. He also offers a way to make your own magic NULL that will match pointers @@ -93,7 +93,7 @@ } NULL; // and whose name is NULL

    (Cribbed from the published version of - the + the Effective C++ CD, reproduced here with permission.)

    If you aren't using g++ (why?), but you do have a compiler which @@ -108,7 +108,7 @@ print this stuff, it prompted him to run this code through current compilers to see what the state of the art is with respect to member template functions. He posted - an + an article to Usenet after discovering that the code above is not valid! Even though it has no data members, it still needs a user-defined constructor (which means that the class needs a type name diff --git a/libstdc++-v3/docs/html/21_strings/howto.html b/libstdc++-v3/docs/html/21_strings/howto.html index 59d9c8d..ed2e743 100644 --- a/libstdc++-v3/docs/html/21_strings/howto.html +++ b/libstdc++-v3/docs/html/21_strings/howto.html @@ -159,7 +159,7 @@


    A case-insensitive string class

    The well-known-and-if-it-isn't-well-known-it-ought-to-be - Guru of the Week + Guru of the Week discussions held on Usenet covered this topic in January of 1998. Briefly, the challenge was, "write a 'ci_string' class which is identical to the standard 'string' class, but is diff --git a/libstdc++-v3/docs/html/27_io/howto.html b/libstdc++-v3/docs/html/27_io/howto.html index e1afe54..e60c671 100644 --- a/libstdc++-v3/docs/html/27_io/howto.html +++ b/libstdc++-v3/docs/html/27_io/howto.html @@ -306,7 +306,7 @@ those end-of-line and end-of-file problems that we mentioned before. An instructive thread from comp.lang.c++.moderated delved off into this topic starting more or less at - this + this article and continuing to the end of the thread. (You'll have to sort through some flames every couple of paragraphs, but the points made are good ones.) @@ -354,7 +354,7 @@

    Creating your own stream buffers for I/O can be remarkably easy. If you are interested in doing so, we highly recommend two very excellent books: - Standard C++ + Standard C++ IOStreams and Locales by Langer and Kreft, ISBN 0-201-18395-1, and The C++ Standard Library by Nicolai Josuttis, ISBN 0-201-37926-0. Both are published by diff --git a/libstdc++-v3/docs/html/configopts.html b/libstdc++-v3/docs/html/configopts.html index 7e27ee0..9d606da 100644 --- a/libstdc++-v3/docs/html/configopts.html +++ b/libstdc++-v3/docs/html/configopts.html @@ -33,7 +33,7 @@ options

    Here are some of the non-obvious options to libstdc++'s configure. Keep in mind that - they + they all have opposite forms as well (enable/disable and with/without). The defaults are for current development sources. diff --git a/libstdc++-v3/docs/html/ext/howto.html b/libstdc++-v3/docs/html/ext/howto.html index 56806ca..b3f9155 100644 --- a/libstdc++-v3/docs/html/ext/howto.html +++ b/libstdc++-v3/docs/html/ext/howto.html @@ -165,7 +165,7 @@

    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++ + at the ISO C++ Committee homepage, linked to on the GCC "Readings" page. If diff --git a/libstdc++-v3/docs/html/faq/index.html b/libstdc++-v3/docs/html/faq/index.html index 9a8bbaf..3c5aa20 100644 --- a/libstdc++-v3/docs/html/faq/index.html +++ b/libstdc++-v3/docs/html/faq/index.html @@ -755,7 +755,7 @@ New: causing problems for you, look carefully before submitting a "high" priority bug report (which you probably shouldn't do anyhow; see the last paragraph of the page describing - the GCC bug database). + the GCC bug database).

    If the headers are in ${prefix}/include/g++-3, or if the installed library's name looks like libstdc++-2.10.a @@ -1049,7 +1049,7 @@ http://clisp.cons.org/~haible/gccinclude-glibc-2.2-compat.diff ANSI and their website is right here. (And if you've already registered with them, clicking this link will take you to directly to the place where you can -buy +buy the standard on-line.

    Who is your country's member body? Visit the diff --git a/libstdc++-v3/docs/html/install.html b/libstdc++-v3/docs/html/install.html index 7889b93..0ef1dbf 100644 --- a/libstdc++-v3/docs/html/install.html +++ b/libstdc++-v3/docs/html/install.html @@ -50,10 +50,7 @@ caveat about using snapshots rather than formal releases). You will need the full source distribution to whatever compiler release you are using. The GCC snapshots can be had from one of the sites on their - mirror list. If you are - using a 2.x compiler, see - the status page - first. + mirror list.

    In addition, if you plan to modify the makefiles or regenerate the -- 2.7.4