From: Mark Mitchell Date: Tue, 16 Jan 2001 08:30:20 +0000 (+0000) Subject: exception_support.cc (__cp_pop_exception): Change prototype. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=40acfbeace8fe9c1b97db4559513c9ef22ba716a;p=gcc.git exception_support.cc (__cp_pop_exception): Change prototype. * libsupc++/exception_support.cc (__cp_pop_exception): Change prototype. From-SVN: r39061 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 052321f7dcf..68a52ed987d 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2001-01-16 Mark Mitchell + + * libsupc++/exception_support.cc (__cp_pop_exception): Change + prototype. + 2001-01-16 Benjamin Kosnik * docs/html/17_intro/C++STYLE (classname): Add more existing diff --git a/libstdc++-v3/libsupc++/exception_support.cc b/libstdc++-v3/libsupc++/exception_support.cc index 42958744707..771f5b483fc 100644 --- a/libstdc++-v3/libsupc++/exception_support.cc +++ b/libstdc++-v3/libsupc++/exception_support.cc @@ -1,5 +1,5 @@ // Functions for Exception Support for -*- C++ -*- -// Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000 Free Software Foundation +// Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation // This file is part of GNU CC. @@ -191,8 +191,9 @@ __cp_push_exception (void *value, void *type, cleanup_fn cleanup) current catch block. */ extern "C" void -__cp_pop_exception (cp_eh_info *p) +__cp_pop_exception (void* v) { + cp_eh_info *p; cp_eh_info **stack = __get_eh_info (); cp_eh_info **q = stack;