Commit c950ddc3 by Adam Megacz

exception.cc (abort): added static modifier

2002-04-05  Adam Megacz <adam@xwt.org>

    * exception.cc (abort): added static modifier

From-SVN: r51937
parent 5f9fb0e3
...@@ -23,7 +23,8 @@ details. */ ...@@ -23,7 +23,8 @@ details. */
// stdlib.h's abort(). // stdlib.h's abort().
namespace std namespace std
{ {
__attribute__ ((__noreturn__)) void abort () static __attribute__ ((__noreturn__)) void
abort ()
{ {
::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