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
There have been several instances where I wrote #[cfg(linux)] to feature-gate something to linux. This is wrong and will never be evaluated to true. Instead #[cfg(unix)] must be used.
The text was updated successfully, but these errors were encountered:
There have been several instances where I wrote
#[cfg(linux)]
to feature-gate something to linux. This is wrong and will never be evaluated to true. Instead#[cfg(unix)]
must be used.The text was updated successfully, but these errors were encountered: