mirror of git://gcc.gnu.org/git/gcc.git
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:
parent
f1c4ff7056
commit
78b3c19774
|
@ -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>
|
2009-11-26 Ben Elliston <bje@au.ibm.com>
|
||||||
|
|
||||||
* posix-threads.cc (ParkHelper::unpark): Do not initialise result,
|
* posix-threads.cc (ParkHelper::unpark): Do not initialise result,
|
||||||
|
|
|
@ -1806,7 +1806,7 @@ _Jv_JNI_GetDirectBufferCapacity (JNIEnv *, jobject buffer)
|
||||||
}
|
}
|
||||||
|
|
||||||
static jobjectRefType JNICALL
|
static jobjectRefType JNICALL
|
||||||
_Jv_JNI_GetObjectRefType (JNIEnv *, jobject object)
|
_Jv_JNI_GetObjectRefType (JNIEnv *, MAYBE_UNUSED jobject object)
|
||||||
{
|
{
|
||||||
JvFail("GetObjectRefType not implemented");
|
JvFail("GetObjectRefType not implemented");
|
||||||
return JNIInvalidRefType;
|
return JNIInvalidRefType;
|
||||||
|
|
Loading…
Reference in New Issue