del_opv.cc revision 132720
1139969Simp// Boilerplate support routines for -*- C++ -*- dynamic memory management.
21556Srgrimes
31556Srgrimes// Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation
41556Srgrimes//
51556Srgrimes// This file is part of GCC.
61556Srgrimes//
71556Srgrimes// GCC is free software; you can redistribute it and/or modify
81556Srgrimes// it under the terms of the GNU General Public License as published by
91556Srgrimes// the Free Software Foundation; either version 2, or (at your option)
101556Srgrimes// any later version.
111556Srgrimes//
121556Srgrimes// GCC is distributed in the hope that it will be useful,
131556Srgrimes// but WITHOUT ANY WARRANTY; without even the implied warranty of
141556Srgrimes// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
151556Srgrimes// GNU General Public License for more details.
161556Srgrimes//
171556Srgrimes// You should have received a copy of the GNU General Public License
181556Srgrimes// along with GCC; see the file COPYING.  If not, write to
191556Srgrimes// the Free Software Foundation, 59 Temple Place - Suite 330,
201556Srgrimes// Boston, MA 02111-1307, USA.
211556Srgrimes//
221556Srgrimes// As a special exception, you may use this file as part of a free software
231556Srgrimes// library without restriction.  Specifically, if other files instantiate
241556Srgrimes// templates or use macros or inline functions from this file, or you compile
251556Srgrimes// this file and link it with other files to produce an executable, this
261556Srgrimes// file does not by itself cause the resulting executable to be covered by
271556Srgrimes// the GNU General Public License.  This exception does not however
281556Srgrimes// invalidate any other reasons why the executable file might be covered by
291556Srgrimes// the GNU General Public License.
301556Srgrimes
311556Srgrimes#include "new"
321556Srgrimes
331556Srgrimesvoid
341556Srgrimesoperator delete[] (void *ptr) throw ()
35114433Sobrien{
361556Srgrimes  ::operator delete (ptr);
3727962Ssteve}
381556Srgrimes