Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolve warnings on macOS with apple-sandbox enabled
`cargo check --target x86_64-apple-darwin --features apple-sandbox` warning: constant `KIO_RETURN_SUCCESS` is never used --> src/unix/apple/macos/ffi.rs:171:11 | 171 | pub const KIO_RETURN_SUCCESS: i32 = 0; | ^^^^^^^^^^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default warning: function `IOServiceMatching` is never used --> src/unix/apple/macos/ffi.rs:133:12 | 133 | pub fn IOServiceMatching(a: *const c_char) -> CFMutableDictionaryRef; | ^^^^^^^^^^^^^^^^^ warning: function `IORegistryEntryGetName` is never used --> src/unix/apple/macos/ffi.rs:159:12 | 159 | pub fn IORegistryEntryGetName(entry: io_registry_entry_t, name: io_name_t) -> kern_return_t; | ^^^^^^^^^^^^^^^^^^^^^^
- Loading branch information