* exception.cc (std::abort): Mark as noreturn.
From-SVN: r49717
This commit is contained in:
parent
845d6a2f5a
commit
cf3c6c99b8
2 changed files with 6 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
// Functions for Exception Support for Java.
|
||||
|
||||
/* Copyright (C) 1998, 1999, 2001 Free Software Foundation
|
||||
/* Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation
|
||||
|
||||
This file is part of libgcj.
|
||||
|
||||
|
@ -23,7 +23,7 @@ details. */
|
|||
// stdlib.h's abort().
|
||||
namespace std
|
||||
{
|
||||
void abort ()
|
||||
__attribute__ ((__noreturn__)) void abort ()
|
||||
{
|
||||
::abort ();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue