Skip to content

Commit 0d55923

Browse files
authored
Add Apple visionOS support (#410)
1 parent a39033a commit 0d55923

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ cfg_if! {
299299
#[path = "dragonfly.rs"] mod imp;
300300
} else if #[cfg(target_os = "fuchsia")] {
301301
#[path = "fuchsia.rs"] mod imp;
302-
} else if #[cfg(any(target_os = "ios", target_os = "watchos", target_os = "tvos"))] {
302+
} else if #[cfg(any(target_os = "ios", target_os = "visionos", target_os = "watchos", target_os = "tvos"))] {
303303
#[path = "apple-other.rs"] mod imp;
304304
} else if #[cfg(target_os = "macos")] {
305305
mod util_libc;

0 commit comments

Comments
 (0)