projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f9fb0e
)
exception.cc (abort): added static modifier
author
Adam Megacz
<megacz@gcc.gnu.org>
Sat, 6 Apr 2002 04:19:10 +0000
(
04:19
+0000)
committer
Adam Megacz
<megacz@gcc.gnu.org>
Sat, 6 Apr 2002 04:19:10 +0000
(
04:19
+0000)
2002-04-05 Adam Megacz <adam@xwt.org>
* exception.cc (abort): added static modifier
From-SVN: r51937
libjava/exception.cc
patch
|
blob
|
history
diff --git
a/libjava/exception.cc
b/libjava/exception.cc
index 176e2488d0bd0286be3dbe96ac6b4a72b4d81055..917d6e10a76e502dfb40bd2e48b24fa6fd250f2f 100644
(file)
--- a/
libjava/exception.cc
+++ b/
libjava/exception.cc
@@
-23,7
+23,8
@@
details. */
// stdlib.h's abort().
namespace std
{
- __attribute__ ((__noreturn__)) void abort ()
+ static __attribute__ ((__noreturn__)) void
+ abort ()
{
::abort ();
}