This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Small problem in include/java-interp.h
- To: java-discuss at sources dot redhat dot com
- Subject: Small problem in include/java-interp.h
- From: minyard at acm dot org
- Date: 20 Jun 2001 22:29:40 -0500
- Reply-To: minyard at acm dot org
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);
};