From 34af7d828d3659725fee41b0d923b13241390aba Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Tue, 17 Mar 2015 17:11:54 -0400 Subject: [PATCH] lib/jvm: fix missing import MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- lib/jvm.nit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jvm.nit b/lib/jvm.nit index a9d815e..4482a93 100644 --- a/lib/jvm.nit +++ b/lib/jvm.nit @@ -169,7 +169,7 @@ extern class JavaVM `{JavaVM *`} return env; `} - fun attach_current_thread: JniEnv `{ + fun attach_current_thread: JniEnv import jni_error `{ JNIEnv *env; #ifdef ANDROID // the signature is different (better actually) on Android -- 1.7.9.5