Skip to content
Snippets Groups Projects
Commit defc55a1 authored by pbrook's avatar pbrook
Browse files

2006-01-18 Paul Brook <paul@codesourcery.com>

	* libsupc++/eh_personality.cc (PERSONALITY_FUNCTION): Use std::abort.




git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109896 138bc75d-0d04-0410-961f-82ee72b054a4
parent 4779159e
No related merge requests found
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>.
......
// -*- 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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment