Fix no return warning in jni_util.h (#62)

This commit is contained in:
Omar Zrien
2017-12-02 03:28:56 -05:00
committed by Peter Johnson
parent 6767afd400
commit 4e0ed79864

View File

@@ -187,6 +187,7 @@ class JArrayRefBase : public JArrayRefInner<JArrayRefBase<T>, T> {
this->m_elements = oth.m_elements;
oth.m_jarr = nullptr;
oth.m_elements = nullptr;
return *this;
}
protected: