Skip to content

Commit 8b6eef9

Browse files
committed
swig: updated swig-generated files
1 parent 797dda0 commit 8b6eef9

18 files changed

+30
-99
lines changed

src/main/java/org/julia/jni/swig/Julia4J.java

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* ----------------------------------------------------------------------------
22
* This file was automatically generated by SWIG (http://www.swig.org).
3-
* Version 4.0.1
3+
* Version 4.0.2
44
*
55
* Do not make changes to this file unless you know what you are doing--modify
66
* the SWIG interface file instead.
@@ -45,8 +45,8 @@ public static void jl_set_sysimg_so(SWIGTYPE_p_void handle) {
4545
Julia4JJNI.jl_set_sysimg_so(SWIGTYPE_p_void.getCPtr(handle));
4646
}
4747

48-
public static SWIGTYPE_p_ios_t jl_create_system_image() {
49-
long cPtr = Julia4JJNI.jl_create_system_image();
48+
public static SWIGTYPE_p_ios_t jl_create_system_image(SWIGTYPE_p_void arg0) {
49+
long cPtr = Julia4JJNI.jl_create_system_image(SWIGTYPE_p_void.getCPtr(arg0));
5050
return (cPtr == 0) ? null : new SWIGTYPE_p_ios_t(cPtr, false);
5151
}
5252

@@ -201,15 +201,6 @@ public static SWIGTYPE_p_jl_sym_t jl_get_root_symbol() {
201201
return (cPtr == 0) ? null : new SWIGTYPE_p_jl_sym_t(cPtr, false);
202202
}
203203

204-
public static SWIGTYPE_p_jl_value_t jl_generic_function_def(SWIGTYPE_p_jl_sym_t name, SWIGTYPE_p_jl_module_t module, SWIGTYPE_p_p_jl_value_t bp, SWIGTYPE_p_jl_value_t bp_owner, SWIGTYPE_p_jl_binding_t bnd) {
205-
long cPtr = Julia4JJNI.jl_generic_function_def(SWIGTYPE_p_jl_sym_t.getCPtr(name), SWIGTYPE_p_jl_module_t.getCPtr(module), SWIGTYPE_p_p_jl_value_t.getCPtr(bp), SWIGTYPE_p_jl_value_t.getCPtr(bp_owner), SWIGTYPE_p_jl_binding_t.getCPtr(bnd));
206-
return (cPtr == 0) ? null : new SWIGTYPE_p_jl_value_t(cPtr, false);
207-
}
208-
209-
public static void jl_method_def(SWIGTYPE_p_jl_svec_t argdata, SWIGTYPE_p_jl_code_info_t f, SWIGTYPE_p_jl_module_t module) {
210-
Julia4JJNI.jl_method_def(SWIGTYPE_p_jl_svec_t.getCPtr(argdata), SWIGTYPE_p_jl_code_info_t.getCPtr(f), SWIGTYPE_p_jl_module_t.getCPtr(module));
211-
}
212-
213204
public static SWIGTYPE_p_jl_code_info_t jl_code_for_staged(SWIGTYPE_p_jl_method_instance_t linfo) {
214205
long cPtr = Julia4JJNI.jl_code_for_staged(SWIGTYPE_p_jl_method_instance_t.getCPtr(linfo));
215206
return (cPtr == 0) ? null : new SWIGTYPE_p_jl_code_info_t(cPtr, false);

src/main/java/org/julia/jni/swig/Julia4JJNI.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* ----------------------------------------------------------------------------
22
* This file was automatically generated by SWIG (http://www.swig.org).
3-
* Version 4.0.1
3+
* Version 4.0.2
44
*
55
* Do not make changes to this file unless you know what you are doing--modify
66
* the SWIG interface file instead.
@@ -18,7 +18,7 @@ public class Julia4JJNI {
1818
public final static native String jl_pathname_for_handle(long jarg1);
1919
public final static native void jl_preload_sysimg_so(String jarg1);
2020
public final static native void jl_set_sysimg_so(long jarg1);
21-
public final static native long jl_create_system_image();
21+
public final static native long jl_create_system_image(long jarg1);
2222
public final static native void jl_save_system_image(String jarg1);
2323
public final static native void jl_restore_system_image(String jarg1);
2424
public final static native void jl_restore_system_image_data(String jarg1, long jarg2);
@@ -50,8 +50,6 @@ public class Julia4JJNI {
5050
public final static native long jl_gensym();
5151
public final static native long jl_tagged_gensym(String jarg1, int jarg2);
5252
public final static native long jl_get_root_symbol();
53-
public final static native long jl_generic_function_def(long jarg1, long jarg2, long jarg3, long jarg4, long jarg5);
54-
public final static native void jl_method_def(long jarg1, long jarg2, long jarg3);
5553
public final static native long jl_code_for_staged(long jarg1);
5654
public final static native long jl_copy_code_info(long jarg1);
5755
public final static native long jl_get_world_counter();

src/main/java/org/julia/jni/swig/SWIGTYPE_p_ios_t.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* ----------------------------------------------------------------------------
22
* This file was automatically generated by SWIG (http://www.swig.org).
3-
* Version 4.0.1
3+
* Version 4.0.2
44
*
55
* Do not make changes to this file unless you know what you are doing--modify
66
* the SWIG interface file instead.

src/main/java/org/julia/jni/swig/SWIGTYPE_p_jl_array_t.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* ----------------------------------------------------------------------------
22
* This file was automatically generated by SWIG (http://www.swig.org).
3-
* Version 4.0.1
3+
* Version 4.0.2
44
*
55
* Do not make changes to this file unless you know what you are doing--modify
66
* the SWIG interface file instead.

src/main/java/org/julia/jni/swig/SWIGTYPE_p_jl_binding_t.java

Lines changed: 0 additions & 26 deletions
This file was deleted.

src/main/java/org/julia/jni/swig/SWIGTYPE_p_jl_code_info_t.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* ----------------------------------------------------------------------------
22
* This file was automatically generated by SWIG (http://www.swig.org).
3-
* Version 4.0.1
3+
* Version 4.0.2
44
*
55
* Do not make changes to this file unless you know what you are doing--modify
66
* the SWIG interface file instead.

src/main/java/org/julia/jni/swig/SWIGTYPE_p_jl_datatype_t.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* ----------------------------------------------------------------------------
22
* This file was automatically generated by SWIG (http://www.swig.org).
3-
* Version 4.0.1
3+
* Version 4.0.2
44
*
55
* Do not make changes to this file unless you know what you are doing--modify
66
* the SWIG interface file instead.

src/main/java/org/julia/jni/swig/SWIGTYPE_p_jl_function_t.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* ----------------------------------------------------------------------------
22
* This file was automatically generated by SWIG (http://www.swig.org).
3-
* Version 4.0.1
3+
* Version 4.0.2
44
*
55
* Do not make changes to this file unless you know what you are doing--modify
66
* the SWIG interface file instead.

src/main/java/org/julia/jni/swig/SWIGTYPE_p_jl_method_instance_t.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* ----------------------------------------------------------------------------
22
* This file was automatically generated by SWIG (http://www.swig.org).
3-
* Version 4.0.1
3+
* Version 4.0.2
44
*
55
* Do not make changes to this file unless you know what you are doing--modify
66
* the SWIG interface file instead.

src/main/java/org/julia/jni/swig/SWIGTYPE_p_jl_module_t.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* ----------------------------------------------------------------------------
22
* This file was automatically generated by SWIG (http://www.swig.org).
3-
* Version 4.0.1
3+
* Version 4.0.2
44
*
55
* Do not make changes to this file unless you know what you are doing--modify
66
* the SWIG interface file instead.

0 commit comments

Comments
 (0)