search for: private_data_c

Displaying 4 results from an estimated 4 matches for "private_data_c".

Did you mean: private_data
2023 Apr 03
1
Breaking Change in Rcomplex Layout?
...stc compiler errors such as: > |error[E0560]: union `libR_sys::Rcomplex` has no field named `r` --> > extendr-api\src\robj\into_robj.rs:93:20 | 93 | Rcomplex { r: 0., i: 0. > } | ^ `libR_sys::Rcomplex` does not have this field | = note: > available fields are: `__bindgen_anon_1`, `private_data_c`| > and > |error[E0609]: no field `i` on type `libR_sys::Rcomplex` --> > extendr-api\src\scalar\rcplx_default.rs:105:35 | 105 | > Rcplx(c64::new(val.r, val.i)) | ^ unknown field | = note: available > fields are: `__bindgen_anon_1`, `private_data_c` help: one of the > expres...
2023 Apr 04
1
Breaking Change in Rcomplex Layout?
...n `libR_sys::Rcomplex` has no field named `r` > --> extendr-api\src\robj\into_robj.rs:93:20 > | > 93 | Rcomplex { r: 0., i: 0. } > | ^ `libR_sys::Rcomplex` does not have this field > | > = note: available fields are: `__bindgen_anon_1`, `private_data_c` > > and > > error[E0609]: no field `i` on type `libR_sys::Rcomplex` > --> extendr-api\src\scalar\rcplx_default.rs:105:35 > | > 105 | Rcplx(c64::new(val.r, val.i)) > | ^ unknown field > | > = note: availab...
2023 Apr 03
1
Breaking Change in Rcomplex Layout?
On 4/3/23 14:07, Michael Milton wrote: > Hi all, > > There seems to have been a breaking change in the R trunk caused by a fix > to bug 18430 <https://bugs.r-project.org/show_bug.cgi?id=18430> that > relates to the layout of the Rcomplex typedef. Previously it was a struct, > but now it's a union by default >
2023 Apr 04
1
Breaking Change in Rcomplex Layout?
...>> |error[E0560]: union `libR_sys::Rcomplex` has no field named `r` >> --> extendr-api\src\robj\into_robj.rs:93:20 | 93 | Rcomplex { r: >> 0., i: 0. } | ^ `libR_sys::Rcomplex` does not have this field | = >> note: available fields are: `__bindgen_anon_1`, `private_data_c`| >> and >> |error[E0609]: no field `i` on type `libR_sys::Rcomplex` --> >> extendr-api\src\scalar\rcplx_default.rs:105:35 | 105 | >> Rcplx(c64::new(val.r, val.i)) | ^ unknown field | = note: >> available fields are: `__bindgen_anon_1`, `private_...