Evgeniy Dushistov

Results 67 issues of Evgeniy Dushistov

Fix `Vec` case. `Vec

C++
may be bug

If one of user function's argument has type `JNIEnv` pass `JNIEnv` to it.

enhancement
Java/JNI

https://github.com/pholser/junit-quickcheck

enhancement
Java/JNI

Example: ```Rust mod swig_foreign_types_map { #![swig_foreigner_type = "const struct MapRect *"] #![swig_rust_type = "*const MapRect"] } ``` if in function you use `*const MapRect` rust_swig can not find such type.

bug

I use simple `build.rs`: ```Rust extern crate autotools; fn main() { let dst = autotools::build("3rdparty/rsync-3.1.3"); println!( "rustc-env=RSYNC_BIN={}", dst.join("bin").join("rsync").display() ); } ``` and after adding such `build.rs` build becomes really slow,...

enhancement
help wanted

Looks like #76 breaks test running thing for me. I have My code looks like this: ```Rust mod tests { #[test] fn test_double_map_err() { do_parse( "double_map_err", r#" mod swig_foreign_types_map {}...