Skip to content

Commit

Permalink
Disable latest symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
yury committed Dec 2, 2023
1 parent d7bb7a8 commit f0854dd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cidre/src/av/capture/device.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use crate::blocks;

#[link(name = "AVFoundation", kind = "framework")]
extern "C" {
static AVCaptureDeviceTypeExternal: &'static Type;
// static AVCaptureDeviceTypeExternal: &'static Type;
static AVCaptureDeviceTypeBuiltInMicrophone: &'static Type;
static AVCaptureDeviceTypeBuiltInWideAngleCamera: &'static Type;
static AVCaptureDeviceTypeBuiltInTelephotoCamera: &'static Type;
Expand Down Expand Up @@ -1567,7 +1567,8 @@ impl Type {
/// 'av::CaptureDeviceType::built_in_wide_angle_camera()'.
#[doc(alias = "AVCaptureDeviceTypeExternal")]
pub fn external() -> &'static Self {
unsafe { AVCaptureDeviceTypeExternal }
todo!();
// unsafe { AVCaptureDeviceTypeExternal }
}

#[doc(alias = "AVCaptureDeviceTypeBuiltInMicrophone")]
Expand Down

0 comments on commit f0854dd

Please # to comment.