exception_support.cc (__cp_pop_exception): Change prototype.
authorMark Mitchell <mark@codesourcery.com>
Tue, 16 Jan 2001 08:30:20 +0000 (08:30 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Tue, 16 Jan 2001 08:30:20 +0000 (08:30 +0000)
* libsupc++/exception_support.cc (__cp_pop_exception): Change
prototype.

From-SVN: r39061

libstdc++-v3/ChangeLog
libstdc++-v3/libsupc++/exception_support.cc

index 052321f7dcf8909f07acfcb2d389a5f6aa4e8f30..68a52ed987d90c631f6c5514e1ec10ffc0afcc8f 100644 (file)
@@ -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
index 42958744707c7a75009876f1370ef5c5ce7a05fc..771f5b483fcf778d0dda32f322f602fe13f6fda9 100644 (file)
@@ -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;