]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
java-interp.h (_Jv_InterpClass): Use JV_MARKOBJ_DECL.
authorTom Tromey <tromey@redhat.com>
Thu, 21 Jun 2001 15:17:21 +0000 (15:17 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Thu, 21 Jun 2001 15:17:21 +0000 (15:17 +0000)
* include/java-interp.h (_Jv_InterpClass): Use JV_MARKOBJ_DECL.
From Corey Minyard.

From-SVN: r43484

libjava/ChangeLog
libjava/include/java-interp.h

index 6278cb6866ffd53e04ea26191066e731975ac196..3b6404bf19924e45ec089faf074d0621b8b135e8 100644 (file)
@@ -1,3 +1,8 @@
+2001-06-21  Tom Tromey  <tromey@redhat.com>
+
+       * include/java-interp.h (_Jv_InterpClass): Use JV_MARKOBJ_DECL.
+       From Corey Minyard.
+
 2001-06-19  Mark J. Roberts  <mjr@statesmean.com>
 
        * java/math/BigInteger.java (byteArrayToIntArray): Don't include
index ebf958bf197ade4f0e294dc6938a629822be99a7..233e73895343d08c5dac7066291644ba94c2adaa 100644 (file)
@@ -158,7 +158,9 @@ class _Jv_InterpClass : public java::lang::Class
   friend class _Jv_InterpMethod;
   friend void  _Jv_PrepareClass(jclass);
   friend void  _Jv_InitField (jobject, jclass, int);
-  friend void* _Jv_MarkObj (void *, void *, void *, void *);
+#ifdef JV_MARKOBJ_DECL
+  friend JV_MARKOBJ_DECL;
+#endif
 
   friend _Jv_MethodBase ** _Jv_GetFirstMethod (_Jv_InterpClass *klass);
 };