]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
guide.html (GLIBCXX_FORCE_NEW): Update remaining places for the name change from...
authorJohn Levon <levon@movementarian.org>
Tue, 12 Aug 2003 08:46:43 +0000 (08:46 +0000)
committerJonathan Wakely <redi@gcc.gnu.org>
Tue, 12 Aug 2003 08:46:43 +0000 (09:46 +0100)
2003-08-11  John Levon  <levon@movementarian.org>

* docs/html/ext/howto/guide.html (GLIBCXX_FORCE_NEW): Update
remaining places for the name change from GLIBCPP_FORCE_NEW
to GLIBCXX_FORCE_NEW

From-SVN: r70363

libstdc++-v3/ChangeLog
libstdc++-v3/docs/html/ext/howto.html

index 1f1db93b939b4844884b01bde8e6bd4db004e10c..dab571de43bd3e29d7d20f97e6fdfba629b56979 100644 (file)
@@ -1,3 +1,10 @@
+2003-08-11  John Levon  <levon@movementarian.org>
+
+       * docs/html/ext/howto/guide.html (GLIBCXX_FORCE_NEW): Update
+       remaining places for the name change from GLIBCPP_FORCE_NEW
+       to GLIBCXX_FORCE_NEW
+
+
 2003-08-11  Benjamin Kosnik  <bkoz@redhat.com>
 
        * include/bits/basic_ios.h: Remove *_iter typedefs, change num*
index 83cb50c365eff61d3ac00f3298d7396194f746df..1c190a66613eaabf81b1422d357437ff7267e2ac 100644 (file)
       SGI STL days.  We have removed it in gcc 3.3.  See next section
       for the new way to get the same effect.
    </p>
-   <h3>Globally disabling memory caching:<code>  GLIBCPP_FORCE_NEW</code></h3>
+   <h3>Globally disabling memory caching:<code>  GLIBCXX_FORCE_NEW</code></h3>
    <p>Starting with gcc 3.3, if you want to globally disable memory
       caching within the library for the default allocator (i.e.
       the one you get for all library objects when you do not specify
-      which one to use), merely set GLIBCPP_FORCE_NEW (at this time,
+      which one to use), merely set GLIBCXX_FORCE_NEW (at this time,
       with any value) into your environment before running the
       program.  You will obtain a similar effect without having to
       recompile your entire program and the entire library (the new
       operator in gcc is a light wrapper around malloc).  If your
-      program crashes with GLIBCPP_FORCE_NEW in the environment,
+      program crashes with GLIBCXX_FORCE_NEW in the environment,
       it likely means that you linked against objects built against
       the older library.  Code to support this extension is fully
-      compatible with 3.2 code if GLIBCPP_FORCE_NEW is not in the
-      environment.
+      compatible with 3.2 code if GLIBCXX_FORCE_NEW is not in the
+      environment. Prior to GCC 3.4, this variable was spelt
+      GLIBCPP_FORCE_NEW.
    </p>
    <h3>Writing your own allocators</h3>
    <p>Depending on your application (a specific program, a generic library,