Skip to content

Commit

Permalink
Fix unused code in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
complexspaces committed Jun 27, 2024
1 parent 4ae3f9b commit 42ec8a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ impl<F: FnOnce()> Drop for ScopeGuard<F> {
pub(crate) mod private {
// This is currently unused on macOS, so silence the warning which appears
// since there's no extension traits making use of this trait sealing structure.
#[cfg_attr(target_vendor = "apple", allow(unreachable_pub))]
#[cfg_attr(target_vendor = "apple", allow(unreachable_pub, dead_code))]
pub trait Sealed {}

impl Sealed for crate::Get<'_> {}
Expand Down

0 comments on commit 42ec8a3

Please sign in to comment.