OSDN Git Service

* libsupc++/exception_support.cc (__cp_pop_exception): Change
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 16 Jan 2001 08:30:20 +0000 (08:30 +0000)
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 16 Jan 2001 08:30:20 +0000 (08:30 +0000)
prototype.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39061 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 052321f..68a52ed 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 4295874..771f5b4 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;