svn commit: r252387 - head/contrib/libstdc++/libsupc++

Dimitry Andric dim at FreeBSD.org
Sat Jun 29 20:17:15 UTC 2013


Author: dim
Date: Sat Jun 29 20:17:14 2013
New Revision: 252387
URL: http://svnweb.freebsd.org/changeset/base/252387

Log:
  Make libsupc++'s __cxa_call_terminate() prototype consistent with the
  definition.
  
  Submitted by:	dt71 at gmx.com
  MFC after:	3 days

Modified:
  head/contrib/libstdc++/libsupc++/unwind-cxx.h

Modified: head/contrib/libstdc++/libsupc++/unwind-cxx.h
==============================================================================
--- head/contrib/libstdc++/libsupc++/unwind-cxx.h	Sat Jun 29 20:13:39 2013	(r252386)
+++ head/contrib/libstdc++/libsupc++/unwind-cxx.h	Sat Jun 29 20:17:14 2013	(r252387)
@@ -133,7 +133,7 @@ extern "C" void __cxa_bad_typeid ();
 // throws, and if bad_exception needs to be thrown.  Called from the
 // compiler.
 extern "C" void __cxa_call_unexpected (void *) __attribute__((noreturn));
-extern "C" void __cxa_call_terminate (void*) __attribute__((noreturn));
+extern "C" void __cxa_call_terminate (_Unwind_Exception*) __attribute__((noreturn));
 
 #ifdef __ARM_EABI_UNWINDER__
 // Arm EABI specified routines.


More information about the svn-src-head mailing list