Commit 40acfbea by Mark Mitchell Committed by Mark Mitchell

exception_support.cc (__cp_pop_exception): Change prototype.

	* libsupc++/exception_support.cc (__cp_pop_exception): Change
	prototype.

From-SVN: r39061
parent 9f12c2a6
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
......
// 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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment