You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
has a lot of code that is configured based on x86 or not(x86). Is there a reason that x86 is special, or could this instead use #[cfg(target_pointer_width = 64)]/#[cfg(target_pointer_width = 32)]?
The text was updated successfully, but these errors were encountered:
Basically, the library only supports x64 and x86. Hence it uses just x86 and not(x86) here and there. It was tested for ARM once, but in general ARM is not supported at the moment.
The code
astro-float/astro-float-num/src/defs.rs
Lines 11 to 33 in 891843d
x86
ornot(x86)
. Is there a reason that x86 is special, or could this instead use#[cfg(target_pointer_width = 64)]
/#[cfg(target_pointer_width = 32)]
?The text was updated successfully, but these errors were encountered: