c++config: Spacing.
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
This commit is contained in:
parent
158aa13aa6
commit
34a133a808
10 changed files with 37 additions and 15 deletions
|
@ -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>
|
2004-11-03 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
|
||||||
|
|
||||||
* config/os/bsd/darwin/os_defines.h
|
* config/os/bsd/darwin/os_defines.h
|
||||||
|
|
|
@ -51,11 +51,11 @@
|
||||||
# define _GLIBCXX_EXTERN_TEMPLATE 1
|
# define _GLIBCXX_EXTERN_TEMPLATE 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Certain function definitions that are meant to be overridable
|
// Certain function definitions that are meant to be overridable from
|
||||||
// from user code are decorated with this macro. For some targets,
|
// user code are decorated with this macro. For some targets, this
|
||||||
// this macro causes these definitions to be weak.
|
// macro causes these definitions to be weak.
|
||||||
#ifndef _GLIBCXX_WEAK_DEFINITION
|
#ifndef _GLIBCXX_WEAK_DEFINITION
|
||||||
#define _GLIBCXX_WEAK_DEFINITION
|
# define _GLIBCXX_WEAK_DEFINITION
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Debug mode support. Debug mode basic_string is not allowed to be
|
// Debug mode support. Debug mode basic_string is not allowed to be
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// Boilerplate support routines for -*- C++ -*- dynamic memory management.
|
// 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.
|
// This file is part of GCC.
|
||||||
//
|
//
|
||||||
|
@ -30,6 +30,7 @@
|
||||||
|
|
||||||
#include "new"
|
#include "new"
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
|
#include <bits/c++config.h>
|
||||||
|
|
||||||
#if _GLIBCXX_HOSTED
|
#if _GLIBCXX_HOSTED
|
||||||
using std::free;
|
using std::free;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// Boilerplate support routines for -*- C++ -*- dynamic memory management.
|
// 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.
|
// This file is part of GCC.
|
||||||
//
|
//
|
||||||
|
@ -29,6 +29,7 @@
|
||||||
// the GNU General Public License.
|
// the GNU General Public License.
|
||||||
|
|
||||||
#include "new"
|
#include "new"
|
||||||
|
#include <bits/c++config.h>
|
||||||
|
|
||||||
extern "C" void free (void *);
|
extern "C" void free (void *);
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// Boilerplate support routines for -*- C++ -*- dynamic memory management.
|
// 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.
|
// This file is part of GCC.
|
||||||
//
|
//
|
||||||
|
@ -29,6 +29,7 @@
|
||||||
// the GNU General Public License.
|
// the GNU General Public License.
|
||||||
|
|
||||||
#include "new"
|
#include "new"
|
||||||
|
#include <bits/c++config.h>
|
||||||
|
|
||||||
_GLIBCXX_WEAK_DEFINITION void
|
_GLIBCXX_WEAK_DEFINITION void
|
||||||
operator delete[] (void *ptr) throw ()
|
operator delete[] (void *ptr) throw ()
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// Boilerplate support routines for -*- C++ -*- dynamic memory management.
|
// 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.
|
// This file is part of GCC.
|
||||||
//
|
//
|
||||||
|
@ -29,6 +29,7 @@
|
||||||
// the GNU General Public License.
|
// the GNU General Public License.
|
||||||
|
|
||||||
#include "new"
|
#include "new"
|
||||||
|
#include <bits/c++config.h>
|
||||||
|
|
||||||
_GLIBCXX_WEAK_DEFINITION void
|
_GLIBCXX_WEAK_DEFINITION void
|
||||||
operator delete[] (void *ptr, const std::nothrow_t&) throw ()
|
operator delete[] (void *ptr, const std::nothrow_t&) throw ()
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
// Support routines for the -*- C++ -*- dynamic memory management.
|
// 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.
|
// This file is part of GCC.
|
||||||
//
|
//
|
||||||
|
@ -30,6 +32,7 @@
|
||||||
#include "new"
|
#include "new"
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <exception_defines.h>
|
#include <exception_defines.h>
|
||||||
|
#include <bits/c++config.h>
|
||||||
|
|
||||||
using std::new_handler;
|
using std::new_handler;
|
||||||
using std::bad_alloc;
|
using std::bad_alloc;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// Support routines for the -*- C++ -*- dynamic memory management.
|
// 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.
|
// This file is part of GCC.
|
||||||
//
|
//
|
||||||
|
@ -29,6 +29,7 @@
|
||||||
|
|
||||||
#include "new"
|
#include "new"
|
||||||
#include <exception_defines.h>
|
#include <exception_defines.h>
|
||||||
|
#include <bits/c++config.h>
|
||||||
|
|
||||||
using std::new_handler;
|
using std::new_handler;
|
||||||
using std::bad_alloc;
|
using std::bad_alloc;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// Boilerplate support routines for -*- C++ -*- dynamic memory management.
|
// 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.
|
// This file is part of GCC.
|
||||||
//
|
//
|
||||||
|
@ -29,8 +29,9 @@
|
||||||
// the GNU General Public License.
|
// the GNU General Public License.
|
||||||
|
|
||||||
#include "new"
|
#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)
|
operator new[] (std::size_t sz) throw (std::bad_alloc)
|
||||||
{
|
{
|
||||||
return ::operator new(sz);
|
return ::operator new(sz);
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// Boilerplate support routines for -*- C++ -*- dynamic memory management.
|
// 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.
|
// This file is part of GCC.
|
||||||
//
|
//
|
||||||
|
@ -29,8 +29,9 @@
|
||||||
// the GNU General Public License.
|
// the GNU General Public License.
|
||||||
|
|
||||||
#include "new"
|
#include "new"
|
||||||
|
#include <bits/c++config.h>
|
||||||
|
|
||||||
_GLIBCXX_WEAK_DEFINITION void *
|
_GLIBCXX_WEAK_DEFINITION void*
|
||||||
operator new[] (std::size_t sz, const std::nothrow_t& nothrow) throw()
|
operator new[] (std::size_t sz, const std::nothrow_t& nothrow) throw()
|
||||||
{
|
{
|
||||||
return ::operator new(sz, nothrow);
|
return ::operator new(sz, nothrow);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue