jni.cc (_Jv_JNI_GetObjectRefType): Mark `object' parameter as maybe unused.

* jni.cc (_Jv_JNI_GetObjectRefType): Mark `object' parameter as
	maybe unused.

From-SVN: r154749
This commit is contained in:
Ben Elliston 2009-11-30 03:44:41 +00:00 committed by Ben Elliston
parent f1c4ff7056
commit 78b3c19774
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-11-30 Ben Elliston <bje@au.ibm.com>
* jni.cc (_Jv_JNI_GetObjectRefType): Mark `object' parameter as
maybe unused.
2009-11-26 Ben Elliston <bje@au.ibm.com>
* posix-threads.cc (ParkHelper::unpark): Do not initialise result,

View File

@ -1806,7 +1806,7 @@ _Jv_JNI_GetDirectBufferCapacity (JNIEnv *, jobject buffer)
}
static jobjectRefType JNICALL
_Jv_JNI_GetObjectRefType (JNIEnv *, jobject object)
_Jv_JNI_GetObjectRefType (JNIEnv *, MAYBE_UNUSED jobject object)
{
JvFail("GetObjectRefType not implemented");
return JNIInvalidRefType;