eh_personality.cc (PERSONALITY_FUNCTION): Use std::abort.
2006-01-18 Paul Brook <paul@codesourcery.com> * libsupc++/eh_personality.cc (PERSONALITY_FUNCTION): Use std::abort. From-SVN: r109896
This commit is contained in:
parent
4720d5ca9c
commit
ddfd0d910b
@ -1,3 +1,7 @@
|
||||
2006-01-18 Paul Brook <paul@codesourcery.com>
|
||||
|
||||
* libsupc++/eh_personality.cc (PERSONALITY_FUNCTION): Use std::abort.
|
||||
|
||||
2006-01-18 Paolo Carlini <pcarlini@suse.de>
|
||||
|
||||
* include/bits/allocator.h: Include <bits/cpp_type_traits.h>.
|
||||
|
@ -1,5 +1,5 @@
|
||||
// -*- C++ -*- The GNU C++ exception personality routine.
|
||||
// Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
|
||||
// Copyright (C) 2001, 2002, 2003, 2006 Free Software Foundation, Inc.
|
||||
//
|
||||
// This file is part of GCC.
|
||||
//
|
||||
@ -386,7 +386,7 @@ PERSONALITY_FUNCTION (int version,
|
||||
break;
|
||||
|
||||
default:
|
||||
abort();
|
||||
std::abort();
|
||||
}
|
||||
actions |= state & _US_FORCE_UNWIND;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user