Displaying 4 results from an estimated 4 matches for "e0609".
Did you mean:
0609
2023 Apr 03
1
Breaking Change in Rcomplex Layout?
...or[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
> expressions' fields has a field...
2023 Apr 04
1
Breaking Change in Rcomplex Layout?
...> --> 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`, `p...
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?
...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 express...