allocator.h: Switch defaults to mt_alloc.
authorBenjamin Kosnik <bkoz@redhat.com>
Mon, 8 Mar 2004 00:27:37 +0000 (00:27 +0000)
committerBenjamin Kosnik <bkoz@gcc.gnu.org>
Mon, 8 Mar 2004 00:27:37 +0000 (00:27 +0000)
2004-03-08  Benjamin Kosnik  <bkoz@redhat.com>

* include/bits/allocator.h: Switch defaults to mt_alloc.

From-SVN: r79084

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/allocator.h

index 36decc1..ae22e7c 100644 (file)
@@ -1,3 +1,7 @@
+2004-03-08  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * include/bits/allocator.h: Switch defaults to mt_alloc.
+
 2004-03-06  Benjamin Kosnik  <bkoz@redhat.com>
 
        * include/ext/mt_allocator.h (_S_initialize): If
index eca50c8..a831232 100644 (file)
 
 // Define the base class to std::allocator.
 
-#include <ext/new_allocator.h>
-#define __glibcxx_default_allocator  __gnu_cxx::new_allocator
+//#include <ext/new_allocator.h>
+//#define __glibcxx_default_allocator  __gnu_cxx::new_allocator
 
-//#include <ext/mt_allocator.h>
-//#define __glibcxx_default_allocator  __gnu_cxx::__mt_alloc
+#include <ext/mt_allocator.h>
+#define __glibcxx_default_allocator  __gnu_cxx::__mt_alloc
 
 namespace std
 {