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
Fix deny(unused) of an unused import with SGX + Miri (#581)
The `deny(unused)` use that used to be here is incompatible with building
this crate with Miri. The import in question is only used in a module
that is only declared when we are not `cfg(miri)`.
I tried to fix this by grouping items into modules so that I could apply
`cfg(not(miri))` to all the SGX code. One could also make the build work
by deleting the `#[deny(unused)]`, but that felt hacky.
0 commit comments