mirror of https://github.com/facebook/rocksdb.git
Fixed a compile warning in rocksjni/loggerjnicallback.cc
Summary: This patch fixes the following compile warning. java/rocksjni/loggerjnicallback.cc: In constructor ‘rocksdb::LoggerJniCallback::LoggerJniCallback(JNIEnv*, jobject)’: java/rocksjni/loggerjnicallback.cc:19:14: warning: unused variable ‘rs’ [-Wunused-variable] const jint rs = env->GetJavaVM(&m_jvm); ^ Test Plan: make rocksdbjavastaticrelease Reviewers: sdong, anthony, IslamAbdelRahman, igor Reviewed By: igor Subscribers: dhruba, leveldb Differential Revision: https://reviews.facebook.net/D45981
This commit is contained in:
parent
b8a962d4f5
commit
0e6e5472e1
|
@ -15,8 +15,7 @@ namespace rocksdb {
|
|||
|
||||
LoggerJniCallback::LoggerJniCallback(
|
||||
JNIEnv* env, jobject jlogger) {
|
||||
|
||||
const jint rs = env->GetJavaVM(&m_jvm);
|
||||
const jint rs __attribute__((unused)) = env->GetJavaVM(&m_jvm);
|
||||
assert(rs == JNI_OK);
|
||||
|
||||
// Note: we want to access the Java Logger instance
|
||||
|
|
Loading…
Reference in New Issue