]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
c++config: Spacing.
authorBenjamin Kosnik <bkoz@redhat.com>
Wed, 3 Nov 2004 04:07:22 +0000 (04:07 +0000)
committerBenjamin Kosnik <bkoz@gcc.gnu.org>
Wed, 3 Nov 2004 04:07:22 +0000 (04:07 +0000)
2004-11-03  Benjamin Kosnik  <bkoz@redhat.com>

* include/bits/c++config: Spacing.
* libsupc++/del_op.cc: Include c++config.h.
* libsupc++/del_opnt.cc: Same.
* libsupc++/del_opv.cc: Same.
* libsupc++/del_opvnt.cc: Same.
* libsupc++/new_op.cc: Same.
* libsupc++/new_opnt.cc: Same.
* libsupc++/new_opv.cc: Same.
* libsupc++/new_opvnt.cc: Same.

From-SVN: r90021

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/c++config
libstdc++-v3/libsupc++/del_op.cc
libstdc++-v3/libsupc++/del_opnt.cc
libstdc++-v3/libsupc++/del_opv.cc
libstdc++-v3/libsupc++/del_opvnt.cc
libstdc++-v3/libsupc++/new_op.cc
libstdc++-v3/libsupc++/new_opnt.cc
libstdc++-v3/libsupc++/new_opv.cc
libstdc++-v3/libsupc++/new_opvnt.cc

index cb3ab699f21fb2efb10c29b242622205f0cccf6b..1bb7202618a6b1b7b5363c6a68813b7f9eb1a84b 100644 (file)
@@ -1,3 +1,15 @@
+2004-11-03  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * include/bits/c++config: Spacing.
+       * libsupc++/del_op.cc: Include c++config.h.
+       * libsupc++/del_opnt.cc: Same.
+       * libsupc++/del_opv.cc: Same.
+       * libsupc++/del_opvnt.cc: Same.
+       * libsupc++/new_op.cc: Same.
+       * libsupc++/new_opnt.cc: Same.
+       * libsupc++/new_opv.cc: Same.
+       * libsupc++/new_opvnt.cc: Same.
+
 2004-11-03  Aaron W. LaFramboise  <aaronavay62@aaronwl.com>
 
        * config/os/bsd/darwin/os_defines.h
index 064280b67564f8ce38e7ae38de7db989b8d7b833..23889bc314abc169474a6661b75d301a23129d6e 100644 (file)
 # define _GLIBCXX_EXTERN_TEMPLATE 1
 #endif
 
-// Certain function definitions that are meant to be overridable
-// from user code are decorated with this macro.  For some targets,
-// this macro causes these definitions to be weak.
+// Certain function definitions that are meant to be overridable from
+// user code are decorated with this macro.  For some targets, this
+// macro causes these definitions to be weak.
 #ifndef _GLIBCXX_WEAK_DEFINITION
-#define _GLIBCXX_WEAK_DEFINITION
+# define _GLIBCXX_WEAK_DEFINITION
 #endif
 
 // Debug mode support. Debug mode basic_string is not allowed to be
index 388f50863b12b996eaa436423743fbb40d9ff179..d76e888e75508d106de3f6e79e3400874dfa128c 100644 (file)
@@ -1,6 +1,6 @@
 // Boilerplate support routines for -*- C++ -*- dynamic memory management.
 
-// Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation
+// Copyright (C) 1997, 1998, 1999, 2000, 2004 Free Software Foundation
 //
 // This file is part of GCC.
 //
@@ -30,6 +30,7 @@
 
 #include "new"
 #include <cstdlib>
+#include <bits/c++config.h>
 
 #if _GLIBCXX_HOSTED
 using std::free;
index 76b7d69e002638203ab02ae342207c4e182480c8..4fce2136c7b0b2054b72c38fd14583bdc8598e12 100644 (file)
@@ -1,6 +1,6 @@
 // Boilerplate support routines for -*- C++ -*- dynamic memory management.
 
-// Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation
+// Copyright (C) 1997, 1998, 1999, 2000, 2004 Free Software Foundation
 //
 // This file is part of GCC.
 //
@@ -29,6 +29,7 @@
 // the GNU General Public License.
 
 #include "new"
+#include <bits/c++config.h>
 
 extern "C" void free (void *);
 
index 94cdfde32ca3e32b83b9b7d0b7a29841d14ee31b..c8d7f33d829de0f88f45205a3a16005f6879d5f2 100644 (file)
@@ -1,6 +1,6 @@
 // Boilerplate support routines for -*- C++ -*- dynamic memory management.
 
-// Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation
+// Copyright (C) 1997, 1998, 1999, 2000, 2004 Free Software Foundation
 //
 // This file is part of GCC.
 //
@@ -29,6 +29,7 @@
 // the GNU General Public License.
 
 #include "new"
+#include <bits/c++config.h>
 
 _GLIBCXX_WEAK_DEFINITION void
 operator delete[] (void *ptr) throw ()
index 180b08f63d4650d8e380a7b5d9894feb7b6c61f2..3ce4e10287a04f2d7dcc4d2e0b9681a3c3a400be 100644 (file)
@@ -1,6 +1,6 @@
 // Boilerplate support routines for -*- C++ -*- dynamic memory management.
 
-// Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation
+// Copyright (C) 1997, 1998, 1999, 2000, 2004 Free Software Foundation
 //
 // This file is part of GCC.
 //
@@ -29,6 +29,7 @@
 // the GNU General Public License.
 
 #include "new"
+#include <bits/c++config.h>
 
 _GLIBCXX_WEAK_DEFINITION void
 operator delete[] (void *ptr, const std::nothrow_t&) throw ()
index 0ebec1cd36f7fe6e5953633a0fe486266fa5b258..43c22405eb5866389b9df16fd700a7d35768726e 100644 (file)
@@ -1,5 +1,7 @@
 // Support routines for the -*- C++ -*- dynamic memory management.
-// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation
+
+// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2004
+// Free Software Foundation
 //
 // This file is part of GCC.
 //
@@ -30,6 +32,7 @@
 #include "new"
 #include <cstdlib>
 #include <exception_defines.h>
+#include <bits/c++config.h>
 
 using std::new_handler;
 using std::bad_alloc;
index 1b29c1a5f12cada9b1cf08ee81b24b6231d26ed1..c25ce5a2d308e1b08660cbcc55c0a260d222348b 100644 (file)
@@ -1,5 +1,5 @@
 // Support routines for the -*- C++ -*- dynamic memory management.
-// Copyright (C) 1997, 1998, 1999, 2000, 2001 Free Software Foundation
+// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2004 Free Software Foundation
 //
 // This file is part of GCC.
 //
@@ -29,6 +29,7 @@
 
 #include "new"
 #include <exception_defines.h>
+#include <bits/c++config.h>
 
 using std::new_handler;
 using std::bad_alloc;
index 9fa7d19ecc49b54526637260736b948302717bcf..abf9771ed0b8973cb2537fd2734eddf8140b3a07 100644 (file)
@@ -1,6 +1,6 @@
 // Boilerplate support routines for -*- C++ -*- dynamic memory management.
 
-// Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation
+// Copyright (C) 1997, 1998, 1999, 2000, 2004 Free Software Foundation
 //
 // This file is part of GCC.
 //
@@ -29,8 +29,9 @@
 // the GNU General Public License.
 
 #include "new"
+#include <bits/c++config.h>
 
-_GLIBCXX_WEAK_DEFINITION void *
+_GLIBCXX_WEAK_DEFINITION void*
 operator new[] (std::size_t sz) throw (std::bad_alloc)
 {
   return ::operator new(sz);
index 79b8cdc1077ce6aa1759a2e63caf53cda728d74a..eb7016afea34e0e69dd62eeead5274bc1f944ef8 100644 (file)
@@ -1,6 +1,6 @@
 // Boilerplate support routines for -*- C++ -*- dynamic memory management.
 
-// Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation
+// Copyright (C) 1997, 1998, 1999, 2000, 2004 Free Software Foundation
 //
 // This file is part of GCC.
 //
@@ -29,8 +29,9 @@
 // the GNU General Public License.
 
 #include "new"
-
-_GLIBCXX_WEAK_DEFINITION void *
+#include <bits/c++config.h>
+_GLIBCXX_WEAK_DEFINITION void*
 operator new[] (std::size_t sz, const std::nothrow_t& nothrow) throw()
 {
   return ::operator new(sz, nothrow);