diff options
author | Mark Mitchell <mark@codesourcery.com> | 2001-01-16 08:30:20 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2001-01-16 08:30:20 +0000 |
commit | 40acfbeace8fe9c1b97db4559513c9ef22ba716a (patch) | |
tree | dc1f6aa269235721cac76c7c145bae50e042f082 | |
parent | 9f12c2a69312eb527dd1f0868e79e529269da300 (diff) | |
download | gcc-40acfbeace8fe9c1b97db4559513c9ef22ba716a.zip gcc-40acfbeace8fe9c1b97db4559513c9ef22ba716a.tar.gz gcc-40acfbeace8fe9c1b97db4559513c9ef22ba716a.tar.bz2 |
exception_support.cc (__cp_pop_exception): Change prototype.
* libsupc++/exception_support.cc (__cp_pop_exception): Change
prototype.
From-SVN: r39061
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/libsupc++/exception_support.cc | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 052321f..68a52ed 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2001-01-16 Mark Mitchell <mark@codesourcery.com> + + * libsupc++/exception_support.cc (__cp_pop_exception): Change + prototype. + 2001-01-16 Benjamin Kosnik <bkoz@redhat.com> * 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 4295874..771f5b4 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; |