This is the mail archive of the java@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Small problem in include/java-interp.h


In the new gcc-3.0 release, there is a small problem with
java-interp.h not using the proper define for _Jv_MarkObj.  The patch
follows.

-Corey

--- orig/gcc-3.0/libjava/include/java-interp.h	Fri Mar 23 13:12:19 2001
+++ gcc-3.0/libjava/include/java-interp.h	Wed Jun 20 16:33:35 2001
@@ -158,7 +158,7 @@
   friend class _Jv_InterpMethod;
   friend void  _Jv_PrepareClass(jclass);
   friend void  _Jv_InitField (jobject, jclass, int);
-  friend void* _Jv_MarkObj (void *, void *, void *, void *);
+  friend JV_MARKOBJ_DECL;
 
   friend _Jv_MethodBase ** _Jv_GetFirstMethod (_Jv_InterpClass *klass);
 };


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]