From 03dda42d1ac95f89bae9d339dc15bb1b4269f717 Mon Sep 17 00:00:00 2001 From: Joshua Nelson Date: Fri, 30 Jul 2021 12:30:48 -0400 Subject: [PATCH] Remove unused attribute --- boring/src/srtp.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/boring/src/srtp.rs b/boring/src/srtp.rs index 4081868e..cbb56fbb 100644 --- a/boring/src/srtp.rs +++ b/boring/src/srtp.rs @@ -8,7 +8,6 @@ use std::str; /// fake free method, since SRTP_PROTECTION_PROFILE is static unsafe fn free(_profile: *mut ffi::SRTP_PROTECTION_PROFILE) {} -#[allow(unused_unsafe)] foreign_type_and_impl_send_sync! { type CType = ffi::SRTP_PROTECTION_PROFILE; fn drop = free;