From 4e0ed79864aa901320c1ad7094622c1f590895a1 Mon Sep 17 00:00:00 2001 From: Omar Zrien Date: Sat, 2 Dec 2017 03:28:56 -0500 Subject: [PATCH] Fix no return warning in jni_util.h (#62) --- src/main/native/include/support/jni_util.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/native/include/support/jni_util.h b/src/main/native/include/support/jni_util.h index 867c60f7fb..ef364f5ac8 100644 --- a/src/main/native/include/support/jni_util.h +++ b/src/main/native/include/support/jni_util.h @@ -187,6 +187,7 @@ class JArrayRefBase : public JArrayRefInner, T> { this->m_elements = oth.m_elements; oth.m_jarr = nullptr; oth.m_elements = nullptr; + return *this; } protected: