]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
exception.cc (abort): added static modifier
authorAdam Megacz <megacz@gcc.gnu.org>
Sat, 6 Apr 2002 04:19:10 +0000 (04:19 +0000)
committerAdam 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

index 176e2488d0bd0286be3dbe96ac6b4a72b4d81055..917d6e10a76e502dfb40bd2e48b24fa6fd250f2f 100644 (file)
@@ -23,7 +23,8 @@ details.  */
 // stdlib.h's abort().
 namespace std
 {
-  __attribute__ ((__noreturn__)) void abort ()
+  static __attribute__ ((__noreturn__)) void
+  abort ()
   {
     ::abort ();
   }