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
2 changed files with 6 additions and 2 deletions
|
@ -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>
|
2006-01-18 Paolo Carlini <pcarlini@suse.de>
|
||||||
|
|
||||||
* include/bits/allocator.h: Include <bits/cpp_type_traits.h>.
|
* include/bits/allocator.h: Include <bits/cpp_type_traits.h>.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// -*- C++ -*- The GNU C++ exception personality routine.
|
// -*- 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.
|
// This file is part of GCC.
|
||||||
//
|
//
|
||||||
|
@ -386,7 +386,7 @@ PERSONALITY_FUNCTION (int version,
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
abort();
|
std::abort();
|
||||||
}
|
}
|
||||||
actions |= state & _US_FORCE_UNWIND;
|
actions |= state & _US_FORCE_UNWIND;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue