Commit cf3c6c99 by Tom Tromey Committed by Tom Tromey

* exception.cc (std::abort): Mark as noreturn.

From-SVN: r49717
parent 845d6a2f
2002-02-12 Tom Tromey <tromey@redhat.com>
* exception.cc (std::abort): Mark as noreturn.
2002-02-12 Adam Megacz <adam@xwt.org>
* java/lang/Win32Process.java: Filled in a placeholder
......
// 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 ();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment